checks whether the specified task is split
task | Task | the object of a task |
boolean | true, if the task is split, false otherwise |
Available only in PRO Edition
const task = gantt.getTask(13);
// --> { id: 13, render:"split", text: "Task #2", ...}
if(gantt.isSplitTask(task)){
// do something
}
This functionality is available in the PRO edition only.