Check documentation for the latest version of dhtmlxSuite setCellExcellType DHTMLX Docs

setCellExcellType

sets an excell type for the cell in question

void setCellExcellType(string|number rowId,number cellIndex,string type);
rowIdstring|numberthe row ID
cellIndexnumberthe cell index
typestringthe type of excell (code like "ed", "txt", "ch", etc.)

Available only in PRO Edition

Example

// setting the type "txt" for the 2nd cell in the row with the id "row1"
myGrid.setCellExcellType("row1",1,"txt");

See also
Back to top