drag_multiple

允许同时拖动多个选中的任务

boolean drag_multiple;

Example

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


Default value:

true

Related samples

Details

当选中了多个任务时,拖动未包含在选中范围内的任务只会移动该单个任务。

若要启用项目的拖放功能,请将 drag_project 配置设置为 true

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