Check documentation for the latest version of dhtmlxSuite setRowTextStyle DHTMLX Docs

setRowTextStyle

sets the style of a row

void setRowTextStyle(string|number row_id,string styleString);
row_idstring|numberthe id of a row
styleStringstringa style string in the common format (example: "color:red;border:1px solid gray;")

Example

grid.setRowTextStyle("r123", "background-color: red; font-family: arial;");

Back to top