EnableBacklight: Boolean;
The EnableBacklight property determines whether row is highlighted on hovering the cursor.
Use JSON or the setEnableBacklight method to set the property value, and the getEnableBacklight method to get the property value.
Available Values:
true. Row highlighting is applied on pointing a mouse cursor (default).
false. Row highlighting is not applied on pointing a mouse cursor.
To execute the example, the HTML page must contain the DataGrid named grid (see Example of Creating the DataGrid Component). Point the cursor to the row with the number 1. As a result the row with the number 1 is highlighted:

Set whether row is highlighted on pointing a mouse cursor:
// Set whether row is highlighted on pointing a cursor mouse grid.setEnableBacklight(False);
After executing the example row is not highlighted on pointing a mouse cursor.
See also: