Skip to main content

afterRowResize

Pro version only

This functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) package.

fires after the height of a row is changed

afterRowResize: (row: object, events: Event, currentHeight: number) => void;

Parameters:

  • row: object - an object with a row configuration
  • events: Event - a native event object
  • currentHeight: number - the current height of the row

Example

grid.events.on("afterRowResize", function(row, events, currentHeight) {
console.log("Current row height:", currentHeight);
});
info

To be able to change the height of the row, you should specify the autoHeight:true and editable:true options in the configuration of Grid.

Change log:

added in v7.1