New to Telerik UI for ASP.NET Core? Download free 30-day trial
ASP.NET Core Grid Server Export
- 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
The Telerik UI for ASP.NET Core Grid enables users to export data to XLSX (Excel) and CSV. This type of export is
recommended when the Grid displays huge sets of data, which are resource intensive, as the approach eliminates the requirement to serialize the entire
dataset and create the file on the client. The file is produced on the server and pushed to the client as a File
object.
This demo illustrates the configuration of the Server
exporting option for all rows. You can also export only selected rows by including the .Selectable()
property, or by adding a checkbox column for selection with
.Columns (columns => { columns.Select().Width(80); })
.
For more information, refer to the official Telerik UI for ASP.NET Core Data Grid product documentation on the available server-export implementations.