Skip to main content

onBeforeTaskAdd

Description

Fires before a new task is added to the Gantt chart

onBeforeTaskAdd: (id: string | number, task: Task) => boolean;

Parameters

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

Returns

  • result - (boolean) - defines whether the default action of the event will be triggered (true) or canceled (false)

Example

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

Details

The event is blockable. Return false to cancel adding of the task.