onAfterLinkAdd

fires after a new link is added to the Gantt chart

void onAfterLinkAdd(string|number id,Link link);
idstring|numberthe link id
linkLinkthe link object

Example

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

See also
Back to top