Documentation

onRowResize

fires when height of row was changed

void onRowResize(id id){ ... };

Parameters

ididid of the row

Example

$$("table").attachEvent("onRowResize", function(id){
    alert("New row height: " + this.getItem(id).$height );
));

Back to top