New to Telerik UI for ASP.NET Core? Download free 30-day trial
ASP.NET Core Grid Selection Aggregates
- 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 HTML HELPER APIDescription
The Grid enables you to calculate aggregates of the selected rows or cells in the table.
As demonstrated in this example, the Telerik UI for ASP.NET Core Grid supports selection aggregates through its GridSelectionSettingsBuilder's CellAggregates
property:
.Selectable(selectable => selectable.Mode(GridSelectionMode.Multiple)
.CellAggregates(true)
)
To display the aggregates use the StatusBarTemplateHandler
property of the Grid.
The aggregates are calculated for each selected cell and support Row, Cell and Checkbox Selection.
For Checkbox Selection also set the .CheckboxSelection(true)
configuration property.
Additionally, you can persist the calculated selection aggregates of the Grid across its pages with the use of its
PersistSelection(true)
method.
For more information, refer to the official Telerik UI for ASP.NET Core Grid documentation about the selection aggregates.