New to Kendo UI for Vue? Start a free 30-day trial
Customizing Exported Columns
Updated on Sep 9, 2026
The GridPDFExport component enables you to specify the columns of the Kendo UI for Vue Grid that will be exported.
To configure the columns that will be exported, change the value of the columns prop just before executing the save metod. hThe new value should have the definitions of the columns that you want to be exported.
The save method exports the data that is passed to it. If you pass want to export all records from the Grid, you should pass the method an array holding this data.
The following example demonstrates how to export the first two columns of the Grid to PDF, either for the current page or across all pages.
Loading ...