onAfterLinkUpdate

fires after the user updates a link

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

Example

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

See also
Back to top