onQuickInfo

fires when the pop-up edit form appears

void onQuickInfo(string|number taskId){ ... };

Parameters

taskIdstring|numberthe task id

Example

gantt.attachEvent("onQuickInfo",function(taskId){
    // your code here
});

Related samples

Details

This event is defined in the Quick Info extension, so you need to activate the quick_info plugin.

added in version 4.1

See also
Back to top