Check documentation for the latest version of dhtmlxSuite onResizeEnd DHTMLX Docs

onResizeEnd

fires when resizing of a column is finished

void onResizeEnd(object obj);
objobjectthe grid object

Available only in PRO Edition

Example

grid.attachEvent("onResizeEnd", function(obj){
    // your code here
});

Back to top