New to Kendo UI for Angular? Start a free 30-day trial
SelectableMode
Represents the available selection modes. See example.
The available values are:
single
—Enables single selection. If you click the selected row, it will not be deselected. See example.multiple
—Enables multiple selection. See example.
html
<kendo-grid [selectable]="{mode: 'multiple'}"></kendo-grid>
type
SelectableMode = "single" | "multiple";