Example of Checkbox Selection in ASP.NET MVC Data Grid Control
This sample demonstrates the selection functionality of the Grid using checkbox selection, To select and unselect all rows use header checkbox. To select/unselect particular row, click the desired row. Delete one or more records using the toolbar delete button
Grid mutliple selection can be achieved with the help of checkbox in each row. To render checkbox in each grid row, you need
to define column type as CheckBox using
Columns->Type property.
Selection can be persisted on all the operations using
SelectionSettings-> PersistSelection property. For persisting selection on the Grid, any one of the column should be defined as a
primary key using
Columns->IsPrimaryKey property.
In this demo, Grid mutliple selection has been enabled with the selection persistance. You can also delete multiple records,
by clicking the toolbar’s Delete button after selecting the checkboxes.