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