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