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