Check documentation for the latest version of dhtmlxSuite setRowExcellType DHTMLX Docs

setRowExcellType

sets an excell type for all cells in the specified row

void setRowExcellType(string|number rowId,string type);
rowIdstring|numberthe id of a row
typestringthe type of an excell

Available only in PRO Edition

Example

//set the "ra_str" type for the cells in the row with the id "row1"
mygrid.setRowExcellType("row1","ra_str");

Back to top