onBeforeRowResizeEnd

행 높이 조정 프로세스가 완료되기 직전에 트리거됩니다.

boolean onBeforeRowResizeEnd(number|string id,Task task,number newHeight);
idnumber|string작업 식별자
taskTask작업 객체 자체
newHeightnumber업데이트된 행의 높이
boolean기본 이벤트 동작을 계속할지(true) 중단할지(false)를 나타냅니다.

Example

gantt.attachEvent("onBeforeRowResizeEnd", function (id, task, newHeight) {
    gantt.message(`<b>${task.text}</b> 의 높이가 이제 <b>${newHeight}px</b> 입니다`);
    return true;
});

Related samples

See also
Change log

v7.1에서 도입됨

Back to top