TreeListView.RowSelect

Syntax

RowSelect: Boolean;

Description

The RowSelect property determines whole row selection mode.

Comments

If the mode is enabled, the whole row is selected on node selection. Default value - false.

Use JSON or the setRowSelect method to set the property value and the getRowSelect method to get the property value.

Example

Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).

// Set whole row selection mode
Tree.setRowSelect(true);

After executing the example the whole row selection mode is enabled.

See also:

TreeListView