onAfterLinkDelete

fires after the user deletes a link

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

Example

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

See also
Back to top