onMultiSelect
Description
Fires after selection of a task or a range of tasks has been completed
onMultiSelect: (e: Event) => void;
Parameters
e- (required) Event - a native event object
Example
gantt.attachEvent("onMultiSelect", function(e){
// some logic here
return true;
});
Details
note
This event is defined in the multiselect extension, so you need to activate the multiselect plugin. Read the details in the Multi-Task Selection article.