사용자가 행 경계를 드래그하여 높이를 변경할 때 발생합니다.
id | string|number | 작업 ID |
task | Task | 작업 객체 |
currentHeight | number | 현재 행의 높이 |
gantt.attachEvent("onRowResize", function (id, task, currentHeight) {
gantt.message({
expire: -1,
text: `<b>${task.text}</b> 의 높이가 <b>${currentHeight}px</b> 로 변경되었습니다`
});
});
v7.1에 추가됨
Back to top