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