Skip to main content

onAfterTaskUpdate

Description

Fires after the user updates a task

onAfterTaskUpdate: (id: string | number, task: Task) => void;

Parameters

  • id - (required) string | number - the task id
  • task - (required) Task - the task object

Example

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