New to Telerik UI for ASP.NET Core? Download free 30-day trial
ASP.NET Core Grid Selection
- EXAMPLE
- VIEW SOURCE
-
Change Theme
defaultDefault Theme
- Main
- Main Dark
- Nordic
- Ocean Blue
- Ocean Blue A11Y
- Purple
- Turquoise
Bootstrap Theme- Main
- Bootstrap 3
- Bootstrap 3 Dark
- Main Dark
- Nordic
- Turquoise
- Turquoise Dark
- Urban
- Vintage
Material Theme- Main
- Arctic
- Lime Dark
- Main Dark
- Nova
Classic Theme- Main
- Green
- Green Dark
- Lavender
- Lavender Dark
- Main Dark
- Metro
- Metro Dark
- Moonlight
- Opal
- Opal Dark
- Silver
- Silver Dark
- Uniform
Fluent Theme- Main
Also available for:
CLIENT-SIDE API SERVER-SIDE APIDescription
Some scenarios require you to enable your users to select rows or cells in the Grid table, and process data from them or make calculations based on this selection.
As demonstrated in this example, the Telerik UI for ASP.NET Core Grid supports selection by specifying its configuration through its Selectable Configurator by setting .Selectable(selectable => selectable.Mode(GridSelectionMode.Multiple).Type(GridSelectionType.Cell))
.
The accepted values for Mode
are Single
and Multiple
while these
for Type
are Cell
and Row
.
Additionally, you can persist the Data Grid row selection after data operations by using the
PersistSelection(true)
method.
For more information, refer to the official Telerik UI for ASP.NET Core Data Grid product documentation on the available selection approaches.