onAfterTaskUpdate

fires after the user updates a task

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

Example

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

See also
Back to top