Check documentation for the latest version of dhtmlxSuite setColumnExcellType DHTMLX Docs

setColumnExcellType

sets an excell type for all the cells in the specified column

void setColumnExcellType(number colIndex,string type);
colIndexnumberthe index of a column
typestringthe type of excell

Available only in PRO Edition

Example

//set type "ch" for the cells in the 3rd column
mygrid.setColumnExcellType(2,"ch");

Back to top