onLinkClick

fires when the user clicks on a link

void onLinkClick(string|number id, [Event e] );
idstring|numberthe id of the clicked link
eEventoptional, a native event object

Example

gantt.attachEvent("onLinkClick", function(id,e){
    //any custom logic here
});

See also
Back to top