Check documentation for the latest version of dhtmlxSuite getColWidth DHTMLX Docs

getColWidth

gets the width of the specified column in pixels

number getColWidth(number ind);

Parameters

indnumbercolumn index

Returns

numberthe width of the specified column in pixels

Example

//get width of the first column 
var width=myTreeGrid.getColWidth(0);

Back to top