Documentation

onColumnResize

fires when width of column was changed

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

Parameters

ididid of the column

Example

$$("table").attachEvent("onColumnResize", function(id){
    alert("New column width: " + this.getColumnConfig(id).width );
));

Back to top