onAfterTaskDelete

fires after the user deletes a task

void onAfterTaskDelete(string|number id,object item);
idstring|numberthe task id
itemobjectthe task object

Example

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

See also
Back to top