Skip to content

onRowResize

fires when the height of a row was changed

function onRowResize(
// the ID of the row
id: string|number
): void
grid.attachEvent("onRowResize", function(id){
alert("New row height: " + this.getItem(id).$height );
));