Check documentation for the latest version of dhtmlxSuite setRowspan DHTMLX Docs

setRowspan

sets rowspan of the specified length starting from the specified cell

void setRowspan(string|number rowID,number colInd,number length);
rowIDstring|numberthe id of a row
colIndnumberthe index of a column
lengthnumberthe length of rowspan

Available only in PRO Edition

Example

mygrid.setRowspan("row1",0,2);

Back to top