Check documentation for the latest version of dhtmlxSuite enableRowsHover DHTMLX Docs

enableRowsHover

enables/disables hovering on a row on mouse over

void enableRowsHover(boolean mode,string cssClass);
modebooleantrue/false
cssClassstringcss class for hovering on a row

Example

.hover { background-color: navy; }   myGrid.enableRowsHover(true,"hover");

Back to top