행 높이 조정 프로세스가 완료되기 직전에 트리거됩니다.
id | number|string | 작업 식별자 |
task | Task | 작업 객체 자체 |
newHeight | number | 업데이트된 행의 높이 |
boolean | 기본 이벤트 동작을 계속할지(true) 중단할지(false)를 나타냅니다. |
gantt.attachEvent("onBeforeRowResizeEnd", function (id, task, newHeight) {
gantt.message(`<b>${task.text}</b> 의 높이가 이제 <b>${newHeight}px</b> 입니다`);
return true;
});
v7.1에서 도입됨
Back to top