Example of Selection API in Javascript Data Grid Control

/
/
Selection API

This sample demonstrates the selection functionality of the Grid, you can select multiple row by entering start and end index then click the select row button. To clear all selected rows, click clear selection button.

More Details...

Select Rows
Start
To
Clear Selection
Description

Selection provides an interactive support to highlight the row or cell or column that you select. Selection can be done through simple Mouse down or Keyboard interaction. To enable selection, set allowSelection as true. Grid supports two types of selection which can be set using selectionSettings->type property. They are, single - Enabled by default. Allows the user to select single row/cell at a time. multiple - Allows the user to select more than one row/cell/column at a time. Also, supports three modes of selection which can be set using selectionSettings->mode property. They are, row - Enabled by default. Enables row selection in Grid. cell - Enables cell selection in Grid. both - Enables both row and cell selection in Grid. Clicking any cell will select both the row and cell simultaneously. To perform the column selection, enable the selectionSettings->allowColumnSelection property. To perform the multi-selection, hold CTRL key and click the desired rows/cells/columns. To select range of rows/cells/columns, hold SHIFT key and click the rows/cells/columns. While using the Grid in a touch device environment, there is an option for multi-selection through single tap on the row and it will show a popup with the multi-selection symbol. Tap the icon to enable multi-selection in a single tap. In this demo, enter the values in the Start and To text box to select range of rows. And click the Clear Selection button to deselect the rows. Injecting Module: Grid features are segregated into individual feature-wise modules. To use selection feature, we need to inject Selection using the Grid.Inject(Selection) section. More information on the selection configuration can be found in this documentation section.