TreeList.RowSelect

Syntax

RowSelect: Boolean

Description

The RowSelect property determines whether the row is highlighted when a row element is selected.

Comments

If the property is set to True, selecting an element highlights the entire row. If the property is set to false, only the selected element is highlighted.

By default this property is set to False.

Example

To execute this example, create the TreeList component named treeListSett.

Property value can be set via a JSON object:

RowSelect: true

or at API level:

treeListSett.setRowSelect(true);

After executing this example selecting an element  highlights the entire row:

See also:

TreeList