Check documentation for the latest version of dhtmlxSuite enableResizing DHTMLX Docs

enableResizing

enables/disables resizing for specified colums

void enableResizing(string list);
liststringa list of true/false values separated by the default delimiter (comma)

Example

//disable resizing of the first column
myTreeGrid.enableResizing("false,true,true,true,true,true,true");

Details

resizing enabled for all columns by default

Back to top