New to Kendo UI for Vue? Start a free 30-day trial
Cell Selection
Updated on Aug 14, 2026
Enable single-cell selection by setting selectable to an object with enabled and cell set to true, and mode set to single.
vue
<Grid :selectable="{ enabled: true, cell: true, mode: 'single' }" />
The following example demonstrates single-cell selection, where the select state is handled internally by the Grid.
Loading ...