주어진 ID를 가진 태스크가 존재하는지 확인합니다.
id | string | number | 태스크 ID |
boolean | true 태스크가 존재할 경우, 그렇지 않으면 false |
gantt.addTask({
id:10,
text:"Task #5",
start_date:"02-09-2023",
duration:28
}, "project_2");
gantt.isTaskExists(10); // ->true
Back to top