Export Overview

By default, the Telerik UI Grid component for ASP.NET Core provides a PDF and Excel export functionality.

For more information about the available export options of the Grid, refer to the articles on:

Telerik UI for ASP.NET Core Ninja image

The Export is part of Telerik UI for ASP.NET Core, a professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.

Under the hood, most of the PDF export options use the Kendo UI for jQuery Drawing library and the Excel export builds a kendo.ooxml.Workbook.

To enable the PDF and Excel Export functionality, add the following ToolBar configuration:

    @(Html.Kendo().Grid<AspNetCoreGrid.Models.OrderViewModel>()
        .Name("grid")
        .ToolBar(tools=>
        {
            tools.Pdf();
            tools.Excel();
        })
    )
    <kendo-grid name="grid">
        <toolbar>
            <toolbar-button name="excel"></toolbar-button>
            <toolbar-button name="pdf"></toolbar-button>
        </toolbar>
    </kendo-grid>

See Also

In this article