我正在使用角度为2的dxhtml gant图表.Below是我得到的输出output Image
gantt.attachEvent("onBeforeTaskAdd", function(id,item){
//any custom logic here return true;
}); //This is my task.ts file content export class Task
{ id: number; start_date: string; text: string; progress: number; duration: number; parent: number; }
这里我想在用户尝试加载相同的任务描述时提醒或中止操作,但我没有得到如何继续使用它。 code for task inserting updating