fires when the user double clicks on a task
id | string | the id of the double clicked task |
e | Event | a native event object |
boolean | defines whether the default action of the event will be triggered (true) or canceled (false) |
gantt.attachEvent("onTaskDblClick", function(id,e){
//any custom logic here
return true;
});
The event is blockable. Returning false will cancel the default handler (opening of task details)