fires after resizing of the row height is finished
id | string|number | the task id |
task | Task | the item object |
oldHeight | number | the old height of the row |
newHeight | number | the new height of the row |
gantt.attachEvent("onAfterRowResize", function (id, task, oldHeight, newHeight) {
gantt.message(`<b>${item.text}</b> was <b>${oldHeight}px</b> height.<br>
<b>${item.text}</b> is now <b>${newHeight}px</b> height`);
});
added in v7.1
Back to top