onLinkIdChange

fires when the id of a link is changed

void onLinkIdChange(string|number id,string|number new_id);
idstring|numberthe current link id
new_idstring|numberthe new link id

Example

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

See also
Back to top