inline_editors_multiselect_open

defines whether inline editor should be opened after one click on a task when multi-task selection is enabled

boolean|undefined inline_editors_multiselect_open;

Example

gantt.config.inline_editors_multiselect_open = true;
 
gantt.init("gantt_here");


Default value:

undefined
Details

In the single selection mode, Gantt opens the inline editor after you click on a task.

In the multi selection mode, the first click on an unselected task will select it whereas the second click on the task will open the inline editor. If you want Gantt to open the inline editor after the first click, enable the inline_editors_multiselect_open config.

See also
Change log

added in v7.1.13

Back to top