DONE
parent
905e86badd
commit
9a5d9877ba
|
|
@ -1030,7 +1030,7 @@ export class NttGanttComponent implements OnInit {
|
||||||
args.milestoneColor = "#bababa";
|
args.milestoneColor = "#bababa";
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
console.log(args);
|
// console.log(args);
|
||||||
args.taskbarElement.innerHTML = null;
|
args.taskbarElement.innerHTML = null;
|
||||||
args.taskbarElement.classlist = null;
|
args.taskbarElement.classlist = null;
|
||||||
|
|
||||||
|
|
@ -1047,6 +1047,8 @@ export class NttGanttComponent implements OnInit {
|
||||||
* @param args event arguments from the syncfusion gantt chart.
|
* @param args event arguments from the syncfusion gantt chart.
|
||||||
*/
|
*/
|
||||||
public taskbarEdited(args: any) {
|
public taskbarEdited(args: any) {
|
||||||
|
console.log(args);
|
||||||
|
let data = args.data;
|
||||||
if (args.data.taskData.isFixed !== false) {
|
if (args.data.taskData.isFixed !== false) {
|
||||||
args.cancel = true;
|
args.cancel = true;
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -1065,7 +1067,8 @@ export class NttGanttComponent implements OnInit {
|
||||||
);
|
);
|
||||||
elem.scrollLeft = this.planTimeScrollLeft;
|
elem.scrollLeft = this.planTimeScrollLeft;
|
||||||
}
|
}
|
||||||
|
console.log(found);
|
||||||
|
this.ganttDefault.refresh();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue