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 idtask- (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.