Check documentation for the latest version of dhtmlxSuite getColumnId DHTMLX Docs

getColumnId

gets the id of the column specified by index

string|number getColumnId(number cin);
cinnumbercolumn index
string|numberthe id of the column specified by index

Example

// get id of the first column 
var colId=myGrid.getColumnId(0);

Back to top