Check documentation for the latest version of dhtmlxSuite onResize DHTMLX Docs

onResize

fires on each resize iteration

void onResize(number cInd,number cWidth,object obj);
cIndnumberthe index of a cell
cWidthnumberthe width of a cell
objobjectthe grid object

Available only in PRO Edition

Example

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

Back to top