UseCtrlSelect: Boolean
The UseCtrlSelect property determines whether multiple nodes can be selected while holding down the CTRL key.
If the property is set to True, multiple nodes can be selected while holding down the CTRL key, otherwise multiple selection is unavailable.
Default value is true.
To execute this example, create the TreeList component named treeListSett.
Property value can be set via a JSON object:
UseCtrlSelect: false
or at API level:
treeListSett.setUseCtrlSelect(false);
After executing the example it is impossible to select multiple nodes while holding down the CTRL key.
NOTE. Property value is overridden by the value set for the TreeList.IsCSMultiSelect property.
See also: