[!Note] Please note that this control has been deprecated and replaced with the Grid component, and as such, we recommend migrating to that control. This will not be receiving any new features, bug fixes will be deprioritized. For help or questions on migrating your codebase to the Data Grid, please contact support.
Web Components Grid Selection
The Ignite UI for Web Components Data Table / Data Grid supports single or multiple row and cell selection.
Web Components Grid Selection Example
Overview
Selection in the Web Components data grid is enabled on a row and cell level and can be configured by using the selectionMode
option of the Web Components grid. This property takes five different options, listed below:
None
: Selection is not enabled.SingleCell
: Selection of a single cell is enabled.SingleRow
: Selection of a single row is enabled.MultipleCell
: Selection of multiple cells is enabled.MultipleRow
: Selection of multiple rows is enabled.RangeCell
: Selection of a range of multiple cells by clicking and dragging is enabled.
selectionBehavior
defaults to ModifierBased
, where only one row or cell is selected at a time and modifier keys (CTRL) are required to multi-select items. selectionBehavior
set to Toggle
will allow multiple rows or cells to be selected on single click only.
MultipleRow
includes the following functionality:
- Click and drag to select rows
- Shift and click to select multiple rows.
- Shift and press the up/down arrow keys to select multiple rows.
Pressing the space bar toggles selection of active row via MultipleRow
or SingleRow
.
Row Range Selection
The following example demonstrates how to selected or deselected all rows in the grid. Note, selectionMode
must be set to MultipleRow.
API References
ModifierBased
MultipleCell
MultipleRow
RangeCell
selectionBehavior
selectionMode
SingleCell
SingleRow