DataGrid.EnableBacklight

Syntax

EnableBacklight: Boolean;

Description

The EnableBacklight property determines whether row is highlighted on hovering the cursor.

Comments

Use JSON or the setEnableBacklight method to set the property value, and the getEnableBacklight method to get the property value.

Available Values:

Example

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:

DataGrid