onAfterTaskUpdate

fires after the user updates a task

void onAfterTaskUpdate(string|number id,object item){ ... };

Parameters

idstring|numberthe task id
itemobjectthe task object

Example

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

See also
Back to top