EnableKeyNavigation: Boolean
The EnableKeyNavigation property determines whether the user can navigate the list using the keyboard.
If the property is set to True, the user can select list elements using the keyboard. If the property is set to false a list element can be selected only using the mouse.
Default value is true.
To execute this example, create the TreeList component named treeListSett.
Property value can be set via a JSON object:
EnableKeyNavigation: false
or at API level:
treeListSett.setEnableKeyNavigation(false);
After executing the example the user cannot select an element using the keyboard.
See also: