Check documentation for the latest version of dhtmlxSuite getColIndexById DHTMLX Docs

getColIndexById

gets column index by column id

number getColIndexById(number id);
idnumbercolumn id
numberthe index of a column

Example

//get index of the column with id "col1"
var colIndex=myTreeGrid.getColIndexById("col1");

Back to top