onAfterTaskUpdate

fires after the user updates a task

void onAfterTaskUpdate(string|number id,Task task);
idstring|numberthe task id
taskTaskthe task object

Example

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

See also
Back to top