fires when the user is dragging the border of the row to resize the row height
id | string|number | the task id |
task | Task | the task object |
currentHeight | number | the current height of the row |
gantt.attachEvent("onRowResize", function (id, task, currentHeight) {
gantt.message({
expire: -1,
text: `<b>${task.text}</b> is now <b>${currentHeight}px</b> height`
});
});
added in v7.1
Back to top