fires before resizing of the row height is completed
id | number|string | the task id |
task | Task | the task object |
newHeight | number | the new height of the row |
boolean | defines whether the default action of the event will be triggered (true) or canceled (false) |
gantt.attachEvent("onBeforeRowResizeEnd", function (id, task, newHeight) {
gantt.message(`<b>${task.text}</b> is now <b>${newHeight}px</b> height`);
return true;
});
added in v7.1
Back to top