onAfterRowResize

행 높이 조정이 완료된 후에 트리거됩니다

void onAfterRowResize(string|number id,Task task,number oldHeight,number newHeight);
idstring|number작업 ID
taskTask항목 객체
oldHeightnumber이전 행 높이
newHeightnumber업데이트된 행 높이

Example

gantt.attachEvent("onAfterRowResize", function (id, task, oldHeight, newHeight) {
    gantt.message(`<b>${item.text}</b> 의 높이가 <b>${oldHeight}px</b> 였습니다.<br>
    <b>${item.text}</b> 의 높이가 이제 <b>${newHeight}px</b> 입니다.`);
});

Related samples

See also
Change log

v7.1에 추가됨

Back to top