drag_multiple

enables the possibility to drag several selected tasks at once

boolean drag_multiple;

Example

gantt.config.drag_multiple = false;
gantt.init("gantt_here");


Default value:

true

Related samples

Details

If you select multiple tasks but start moving a task that is not selected - only the unselected task will be moved.

You can also enable drag and drop of projects by setting the drag_project config to true.

gantt.config.drag_project = true;
See also
Back to top