onAfterLinkUpdate

fires after the user updates a link

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

Example

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

See also
Back to top