onMultiSelect

fires after selection of a task or a range of tasks has been completed

void onMultiSelect(Event e);
eEventa native event object

Example

gantt.attachEvent("onMultiSelect", function(e){
    // some logic here
    return true;
});

Details

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.

See also
Back to top