onAfterLinkAdd

fires after a new link is added to the Gantt chart

void onAfterLinkAdd(string|number id,object item);
idstring|numberthe link id
itemobjectthe link object

Example

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

See also
Back to top