fires after resizing of the row height is finished
id | string|number | the task id |
item | object | the item object |
oldHeight | number | the old height of the row |
newHeight | number | the new height of the row |
gantt.attachEvent("onAfterRowResize", function (id, item, 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