hendrixback How can I remove the edit of the task when I double click on it? I don't want to put readonly. I just want users to drag (resize) the task nothing else Thanks
Marta you can intercept the "show-editor" event like next api.intercept("show-editor", data => { return false; }); https://docs.svar.dev/svelte/gantt/api/actions/show-editor though it will block all edit operation ( which are currently initiated by dbl-clicking on bar, or by dbl-clicking on row in the table )