Check documentation for the latest version of dhtmlxSuite getColType DHTMLX Docs

getColType

gets column type by column index

string getColType(number cInd);
cIndnumbercolumn index
stringthe type of a column

Example

//get type of the first column 
var type=myTreeGrid.getColType(0);

Back to top