[ enum ] SelectionMode
Description:
Enum for selection modes in UI components like Table, List, Tree. Used with selectionMode() to set of get a selection mode of a list of items or rows.
Type: number
Properties:
| Name | Description |
|---|---|
|
Single item selection. |
|
Range selection (shift-click). |
|
Multiple selection (ctrl/cmd-click). |
Examples:
table.selectionMode(SelectionMode.Single);
