diff --git a/_contentTemplates/grid/export.md b/_contentTemplates/grid/export.md deleted file mode 100644 index 5689069db..000000000 --- a/_contentTemplates/grid/export.md +++ /dev/null @@ -1,78 +0,0 @@ -#export-common-notes -* `bool` fields are exported as `TRUE` or `FALSE` strings, because there is no native boolean data type in exported format and these string values are the most common ones used in data and macros. - -* Date and number formats are exported with the following format: `mm/dd/yyyy hh:mm:ss` plus the current app culture AM/PM specifier for dates, and `Convert.ToDouble(value)` for numbers (which uses the current thread culture). The Excel date formats are different than .NET date formats and Excel may not always recognize the column as dates, for example, if the entire date format from the .NET culture is used. - -* The Grid exports only `` instances. Other types of columns are not exported, for example command, checkbox, hierarchy, group and row-drag columns. - -* If the Grid is using `OnRead` and is exporting all pages, it will fire an additional `OnRead` event at the time of exporting, with a request `PageSize` of `0`. This will enable the component to obtain all data. - -* With Server-side Blazor, the file may become larger than the default SignalR connection limit, and this can disconnect the client and result in an error. Generally, this requires quite a lot of data to happen, but you may need to increase the size limit of the connection in the `ConfigureServices` method of your `Startup.cs` file, for example: - -````C#.skip-repl -services.AddServerSideBlazor().AddHubOptions(o => -{ - o.MaximumReceiveMessageSize = 1024 * 1024; // 1MB -}); -```` - -* With Client-side Blazor (WebAssembly), all the code runs in the browser and, at the time of writing, is considerably slower than server-side Blazor, and it only has one actual thread. This means that while the file is being generated, the UI will be unresponsive, so you may want to show a loading sign to the user through the `OnClick` handler of the command button, something like: - -````RAZOR.skip-repl Component -@* Exporting a lot of rows can be slow in a WebAssembly app more so than in a server-side app, and it blocks the UI *@ - - - - Export to Excel - Export to CSV - - - - - - - - - Please wait... - We are exporting your data, your file will download shortly. - - -@code { - bool isExporting { get; set; } - - async Task ShowLoadingSign() - { - isExporting = true; - StateHasChanged(); - // This won't work for server-side Blazor, the UI will render immediately after the delay and the loading sign will only flicker - await Task.Delay(50); - isExporting = false; - } - - List GridData { get; set; } - - protected override void OnInitialized() - { - GridData = Enumerable.Range(1, 1000).Select(x => new SampleData - { - ProductId = x, - ProductName = $"Product {x}", - UnitsInStock = x * 2, - Price = 3.14159m * x, - Discontinued = x % 4 == 0, - FirstReleaseDate = DateTime.Now.AddDays(-x) - }).ToList(); - } - - public class SampleData - { - public int ProductId { get; set; } - public string ProductName { get; set; } - public int UnitsInStock { get; set; } - public decimal Price { get; set; } - public bool Discontinued { get; set; } - public DateTime FirstReleaseDate { get; set; } - } -} -```` -#end diff --git a/components/grid/export/csv.md b/components/grid/export/csv.md index 676526beb..29ce754e8 100644 --- a/components/grid/export/csv.md +++ b/components/grid/export/csv.md @@ -5,7 +5,7 @@ description: Export to CSV the Grid for Blazor. slug: grid-export-csv tags: telerik,blazor,grid,export,csv published: True -position: 1 +position: 3 --- # Grid CSV Export @@ -14,25 +14,38 @@ You can export the grid to CSV with a click of a button. The current filter, sor When you click the Export button, your browser will receive the resulting file. +>tip Make sure to get familiar with all the [general export documentation first](slug:grid-export-overview). + #### In This Article - [Basics](#basics) - [Programmatic Export](#programmatic-export) - [Customization](#customization) - - [Notes](#notes) - - [See Also](#see-also) ## Basics -To enable the grid CSV Export, add a [command button](slug:components/grid/columns/command) with the `CsvExport` command name to the [Grid toolbar](slug:components/grid/features/toolbar). +To enable the CSV export in the Grid: + +1. [Add the Export Tool](#add-the-export-tool) +1. [Configure the Export Settings](#configure-the-export-settings) + +### Add the Export Tool + +Add the `GridToolBarCsvExportTool` inside the [``](slug:components/grid/features/toolbar#command-tools): ````RAZOR.skip-repl - - Export to CSV - + + + Export to CSV + + ```` -Optionally, you can also set the `GridCsvExport` tag settings under the `GridExport` tag to subscribe to the [Grid export events](slug:grid-export-events) that allow further customization of the exported columns/data or configure the CSV export options: +If you have a custom Toolbar, add a command button with the `CsvExport` command name inside a [templated Grid Toolbar](slug:components/grid/features/toolbar#custom-toolbar-configuration)(``). + +### Configure the Export Settings + +To configure the CSV export settings, add the `GridCsvExport` tag under the `GridExport` tag. You may set the following options: @[template](/_contentTemplates/common/parameters-table-styles.md#table-layout) @@ -41,22 +54,29 @@ Optionally, you can also set the `GridCsvExport` tag settings under the `GridExp | `FileName` | `string` | The name of the file. The grid will add the `.csv` extension for you. | | `AllPages` | `bool` | Whether to export the current page only, or the entire data from the data source. | ->caption Export the Grid to CSV - Example +For further customizations, use the `GridExcelExport` tag to subscribe to the [Grid export events](slug:grid-export-events). + +>caption Export the Grid to CSV ````RAZOR @* You can sort, group, filter, page the grid, reorder its columns, and you can click the Export button to save the current data *@ - + - - Export to CSV - - + + + Export to CSV + + - + @@ -72,19 +92,17 @@ Optionally, you can also set the `GridCsvExport` tag settings under the `GridExp @code { private List GridData { get; set; } - private bool ExportAllPages { get; set; } - protected override void OnInitialized() { GridData = Enumerable.Range(1, 100).Select(x => new SampleData - { - ProductId = x, - ProductName = $"Product {x}", - UnitsInStock = x * 2, - Price = 3.14159m * x, - Discontinued = x % 4 == 0, - FirstReleaseDate = DateTime.Now.AddDays(-x) - }).ToList(); + { + ProductId = x, + ProductName = $"Product {x}", + UnitsInStock = x * 2, + Price = 3.14159m * x, + Discontinued = x % 4 == 0, + FirstReleaseDate = DateTime.Now.AddDays(-x) + }).ToList(); } public class SampleData @@ -194,24 +212,15 @@ To customize the exported file, handle the `OnBeforeExport` or `OnAfterExport` e The component allows you to control the data set that will be exported. It also provides built-in customization options for the columns, such as `Width`, `Title`, and more. -For more advanced customizations (such as coloring the headers, bolding the titles, or even changing cell values) the Grid lets you get the `MemoryStream` of the file. Thus, you can customize it using the [`SpreadProcessing`](https://docs.telerik.com/devtools/document-processing/libraries/radspreadprocessing/overview) or the [`SpreadStreamProcessing`](https://docs.telerik.com/devtools/document-processing/libraries/radspreadstreamprocessing/overview) libraries that are available with your license. +For more advanced customizations (such as formatting the numbers and dates, or changing the default comma delimiter) the Grid lets you get the `MemoryStream` of the file. Thus, you can customize it using the [`SpreadProcessing`](https://docs.telerik.com/devtools/document-processing/libraries/radspreadprocessing/overview) or the [`SpreadStreamProcessing`](https://docs.telerik.com/devtools/document-processing/libraries/radspreadstreamprocessing/overview) libraries that are available with your license. [Read more about how to customize the exported file...](slug:grid-export-events) -## Notes - -The CSV export has the following specifics: - -* Column widths are not applied because a CSV document does not have such a concept. You can use any units in the grid itself, they will not be reflected in the exported document. If you need to add such structure, consider [exporting to an Excel file](slug:grid-export-excel). -* Templates are not exported, because there is no provision in the framework for getting them at runtime. If a column, header or group header/footer has a template or aggregates, it will be ignored. The headers will be the `Title` of the column, the data is the data from the `Field`. If you need additional information, see if you can add it in a Field in the model, or create your own Excel file. Find a project example on how to generate your own exported file. - -@[template](/_contentTemplates/grid/export.md#export-common-notes) ## See Also - * [Live Demo: Grid Export](https://demos.telerik.com/blazor-ui/grid/export) - * [Custom cell formatting of the exported file with RadSpreadProcessing](slug:grid-kb-custom-cell-formatting-with-radspreadprocessing) - * [Custom cell formatting of the exported file with RadSpreadStreamProcessing](slug:grid-kb-custom-cell-formatting-with-radspreadstreamprocessing) - * [Format numbers and dates in the exported CSV file from the Grid](slug:grid-kb-number-formatting-of-the-csv-export) - * [Change the default CSV delimiter (comma) during Grid export](slug:grid-kb-csv-export-change-field-delimiter) - * [Blazor Grid](slug:grid-overview) +* [Live Demo: Grid Export](https://demos.telerik.com/blazor-ui/grid/export) +* [Format numbers and dates in the exported CSV file from the Grid](slug:grid-kb-number-formatting-of-the-csv-export) +* [Change the default CSV delimiter (comma) during Grid export](slug:grid-kb-csv-export-change-field-delimiter) +* [Sowing a Loader While Exporting the Grid](slug:grid-kb-show-loader-while-exporting) +* [Blazor Grid](slug:grid-overview) diff --git a/components/grid/export/excel.md b/components/grid/export/excel.md index 01db7bcbf..f62610102 100644 --- a/components/grid/export/excel.md +++ b/components/grid/export/excel.md @@ -5,7 +5,7 @@ description: Export to Excel the Grid for Blazor. slug: grid-export-excel tags: telerik,blazor,grid,export,excel published: True -position: 1 +position: 5 --- # Grid Excel Export @@ -14,25 +14,39 @@ You can export the grid to Excel with a click of a button. The current filter, s When you click the Export button, your browser will receive the resulting file. +>tip Make sure to get familiar with all the [general export documentation first](slug:grid-export-overview). #### In This Article - [Basics](#basics) - [Programmatic Export](#programmatic-export) - [Customization](#customization) - - [Notes](#notes) ## Basics -To enable the Grid Excel Export, add a [command button](slug:components/grid/columns/command) with the `ExcelExport` command name to the [Grid toolbar](slug:components/grid/features/toolbar). +To enable the Excel export in the Grid: + +1. [Add the Export Tool](#add-the-export-tool) +1. [Configure the Export Settings](#configure-the-export-settings) +1. [Set the Columns Width in Pixels](#set-the-columns-width-in-pixels) + +### Add the Export Tool + +Add the `GridToolBarExcelExportTool` inside the [``](slug:components/grid/features/toolbar#command-tools): ````RAZOR.skip-repl - - Export to Excel - + + + Export to Excel + + ```` -Optionally, you can also set the `GridExcelExport` tag settings under the `GridExport` tag to subscribe to the [Grid export events](slug:grid-export-events) that allow further customization of the exported columns/data or configure the Excel export options: +If you have a custom Toolbar, add a command button with the `ExcelExport` command name inside a [templated Grid Toolbar](slug:components/grid/features/toolbar#custom-toolbar-configuration)(``). + +### Configure the Export Settings + +To configure the Excel export settings, add the `GridExcelExport` tag under the `GridExport` tag. You may set the following options: @[template](/_contentTemplates/common/parameters-table-styles.md#table-layout) @@ -41,22 +55,37 @@ Optionally, you can also set the `GridExcelExport` tag settings under the `GridE | `FileName` | `string` | The name of the file. The grid will add the `.xslx` extension for you. | | `AllPages` | `bool` | Whether to export the current page only, or the entire data from the data source. | ->caption Export the Grid to Excel - Example +For further customizations, use the `GridExcelExport` tag to subscribe to the [Grid export events](slug:grid-export-events). + +### Set the Columns Width in Pixels + +The export to Excel does not require that all columns have explicit widths set. However, if you do set the column widths, ensure you use only `px`. + +Excel cannot parse units different than `px` (e.g., `rem` or `%`) and renders a collapsed (hidden) column with zero width. This is an Excel limitation. If you prefer to use different than `px` units in the UI, handle the [`OnBeforeExport` event to provide the column width in pixels for the proper export](slug:grid-export-events#for-excel-export). + +>caption Export the Grid to Excel ````RAZOR @* You can sort, group, filter, page the grid, resize and reodrder its columns, and you can click the Export button to save the current data *@ - + - - Export to Excel - - + + + Export to Excel + + - + @@ -72,19 +101,17 @@ Optionally, you can also set the `GridExcelExport` tag settings under the `GridE @code { private List GridData { get; set; } - private bool ExportAllPages { get; set; } - protected override void OnInitialized() { GridData = Enumerable.Range(1, 100).Select(x => new SampleData - { - ProductId = x, - ProductName = $"Product {x}", - UnitsInStock = x * 2, - Price = 3.14159m * x, - Discontinued = x % 4 == 0, - FirstReleaseDate = DateTime.Now.AddDays(-x) - }).ToList(); + { + ProductId = x, + ProductName = $"Product {x}", + UnitsInStock = x * 2, + Price = 3.14159m * x, + Discontinued = x % 4 == 0, + FirstReleaseDate = DateTime.Now.AddDays(-x) + }).ToList(); } public class SampleData @@ -199,19 +226,10 @@ For more advanced customization (such as coloring the headers or bolding the tit Read more about how to [customize the exported file](slug:grid-export-events). -## Notes - -The Excel export has the following specifics: - -* Excel does not understand units different than `px` for the column `Width`, and if you use them (such as `rem` or `%`), it will fail to parse them and will render a collapsed (hidden) column with zero width. -* Templates are not exported, because there is no provision in the framework for getting them at runtime. If a column, header or group header/footer has a template or aggregates, it will be ignored. The headers will be the `Title` of the column, the data is the data from the `Field`. If you need additional information, see if you can add it in a Field in the model, or create your own Excel file. Find a project example on how to generate your own exported file. Find additional information on how to [export an image that is rendered in a Grid column template](slug:grid-export-image-column-excel). - -@[template](/_contentTemplates/grid/export.md#export-common-notes) - - ## See Also * [Live Demo: Grid Export](https://demos.telerik.com/blazor-ui/grid/export) * [Custom Cell Formatting of the Exported File with RadSpreadProcessing](slug:grid-kb-custom-cell-formatting-with-radspreadprocessing) * [Custom Cell Formatting of the Exported File with RadSpreadStreamProcessing](slug:grid-kb-custom-cell-formatting-with-radspreadstreamprocessing) + * [Showing a Loader While Exporting the Grid](slug:grid-kb-show-loader-while-exporting) * [Blazor Grid](slug:grid-overview) diff --git a/components/grid/export/overview.md b/components/grid/export/overview.md new file mode 100644 index 000000000..3d01973fb --- /dev/null +++ b/components/grid/export/overview.md @@ -0,0 +1,54 @@ +--- +title: Overview +page_title: Grid - Export Overview +description: Export basics for the Grid for Blazor. +slug: grid-export-overview +tags: telerik, blazor, grid, export +published: True +position: 1 +--- + +# Blazor Grid Export + +The Grid for Blazor provides a built-in functionality to export the data to: +* [CSV](slug:grid-export-csv) +* [Excel](slug:grid-export-excel) +* [PDF](slug:grid-export-pdf) + +Before proceeding to the dedicated export articles, ensure you are familiar with the following information: + +## How the Export Works + +The Grid export feature has the following specifics: + +* If the Grid is using `OnRead` and is exporting all pages, it will fire an additional `OnRead` event at the time of exporting, with a request `PageSize` of `0`. This will enable the component to obtain all data. +* The time for export will be longer if: + * The Grid has a lot of records. + * The Grid is in a WebAssembly app where all the code runs in the browser and in one thread. + +>tip While the file is being generated, the UI will be unresponsive, so you may want to [show a loading sign to the user during the export process](slug:grid-kb-show-loader-while-exporting). + +## Requirements + +In server-side Blazor apps, the file may become larger than the default SignalR message size limit. This can disconnect the client and result in an error. You may need to [increase the maximum SignalR message size](slug:common-kb-increase-signalr-max-message-size). + +## Limitations + +The Grid export feature has the following limitations: + +* Templates are not exported, because there is no provision in the framework for getting `RenderFragment` content at runtime. Thus, column, header or group header/footer templates are ignored. The headers in the exported file match the `Title` of the column. The exported values match the data from the column `Field`. If you need additional information, see if you can add it to a property in the model, or create your own file. Find a [project example on how to generate your own exported file](https://feedback.telerik.com/blazor/1485764-customize-the-Pdf-file-before-it-gets-to-the-client). Find additional information on how to [export an image that is rendered in a Grid column template](slug:grid-export-image-column-excel). +* `bool` fields are exported as `TRUE` or `FALSE` strings, because there is no native boolean data type in the exported formats and these string values are the most common ones used in data and macros. +* Dates are exported in the following format: `mm/dd/yyyy hh:mm:ss` plus the current app culture AM/PM specifier. The Excel date formats are different than .NET date formats and Excel may not always recognize the column as dates, for example, if the entire date format from the .NET culture is used. To customize the date formats, use the [Export Events](slug: grid-export-events). +* Numbers are exported in the following format which uses the current thread culture: `Convert.ToDouble(value)`. To customize the number formats use the [Export Events](slug: grid-export-events). +* The Grid exports only `` instances. Other types of columns are not exported (for example: command, checkbox, hierarchy, group and row-drag columns). + +## Customization + +The Grid allows customization of the exported files. You can determine the desired data to be exported, change the number and date formats, and more. For such customizations, [handle the export events](slug:grid-export-events). + +## See Also + +* [Grid Export to CSV](slug:grid-export-csv) +* [Grid Export to Excel](slug:grid-export-excel) +* [Grid Export to PDF](slug:grid-export-pdf) +* [Live Demo: Grid Export](https://demos.telerik.com/blazor-ui/grid/export) diff --git a/components/grid/export/pdf.md b/components/grid/export/pdf.md index df542016f..e7ef3a551 100644 --- a/components/grid/export/pdf.md +++ b/components/grid/export/pdf.md @@ -5,44 +5,69 @@ description: Export to PDF the Grid for Blazor. slug: grid-export-pdf tags: telerik,blazor,grid,export,pdf published: True -position: 1 +position: 7 --- # Grid PDF Export -You can export the Grid to PDF with the click of a button. The current filter, sort, page, grouping, column order, and column size are applied to the exported PDF document. +You can export the Grid to PDF with the click of a button. The current filter, sort, page, grouping, column order, and column size are applied to the exported PDF document. When you click the Export button, your browser will receive the resulting file. -When you click the Export button, your browser will receive the resulting file. +The Grid exports its raw data to PDF and does not export the full HTML. This behavior is different from the PDF exporting in Kendo UI for jQuery. [To export to PDF as HTML, you can use a custom approach](#custom-export). + +>tip Make sure to get familiar with all the [general export documentation first](slug:grid-export-overview). #### In This Article - [Basics](#basics) + - [Limitations](#limitations) - [Programmatic Export](#programmatic-export) - [Customization](#customization) - - [Notes](#notes) - [Custom Export](#custom-export) ## Basics -To enable users to export the Grid to PDF, add a [command button](slug:components/grid/columns/command) with the `PdfExport` command name to the [Grid toolbar](slug:components/grid/features/toolbar). +To enable the PDF export in the Grid: + +1. [Add the Export Tool](#add-the-export-tool) +1. [Configure the Export Settings](#configure-the-export-settings) +1. [Set the Columns Width in Pixels](#set-the-columns-width-in-pixels) + +### Add the Export Tool + +Add the `GridToolBarPdfExportTool` inside the [``](slug:components/grid/features/toolbar#command-tools) ````RAZOR.skip-repl - - Export to Pdf - + + + Export to PDF + + ```` -Optionally, you can also set the `GridPdfExport` tag settings under the `GridExport` tag to subscribe to the [Grid export events](slug:grid-export-events) that allow further customization of the exported columns/data or configure the PDF export options: +If you have a custom Toolbar, add a command button with the `PdfExport` command name inside a [templated Grid Toolbar](slug:components/grid/features/toolbar#custom-toolbar-configuration)(``): -@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout) +### Configure the Export Settings + +To configure the PDF export settings, add the `GridPdfExport` tag under the `GridExport` tag. You may set the following options: +@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout) | Parameter | Type and Default Value | Description | | --- | --- | --- | | `FileName` | `string` | The name of the file. The Grid will add the `.pdf` extension for you. | | `AllPages` | `bool` | Whether to export the current page only, or the entire data from the data source. | | `PaperSize` | `GridPdfExportPaperSize` enum
(`A4`) | The size of the paper for the exported file. | | `PageOrientation` | `GridPdfExportPageOrientation` enum
(`Portrait`)| The orientation of the page—portrait or landscape. | - + +Provide appropriate `PaperSize` and `PageOrientation` properties. For example, if you want to render 20 columns (100px each) in an A4 sheet, then this will yield unexpected results. The column dimensions in a PDF file are fixed, thus they cannot be resized as in Excel, which requires the developer to ensure proper export dimensions. + +For further customizations, use the `GridPdfExport` tag to subscribe to the [Grid export events](slug:grid-export-events). + +### Set the Columns Width in Pixels + +Provide pixel widths for all columns - PDF export requires pixel widths for all columns. Widths in other units such as `%` or `em` cannot be translated correctly and the respective columns will collapse in the exported PDF file. + +The column widths for the PDF export can differ from the ones in the Grid configuration for the web browser. To set column widths for the PDF file only, use the `Width` property of the [`OnBeforeExportEventArgs.Columns`](slug:grid-export-events#for-pdf-export) members. + >caption Export the Grid to PDF ````RAZOR @@ -54,16 +79,17 @@ Optionally, you can also set the `GridPdfExport` tag settings under the `GridExp Groupable="true" Pageable="true" Reorderable="true" - Resizable="true" + Resizable="true" Sortable="true" - Width="650px"> - - Export to PDF - - + Width="700px"> + + + Export to PDF + + - + @@ -78,8 +104,6 @@ Optionally, you can also set the `GridPdfExport` tag settings under the `GridExp @code { private List GridData { get; set; } - private bool ExportAllPages { get; set; } - protected override void OnInitialized() { GridData = Enumerable.Range(1, 100).Select(x => new SampleData @@ -103,6 +127,13 @@ Optionally, you can also set the `GridPdfExport` tag settings under the `GridExp } ```` +## Limitations + +The PDF export has the following limitations: + +* For performance reasons, the PDF export mechanism draws each cell value on a single line. Any content that does not fit in the available space will be clipped. Text wrapping and PDF column resizing is not supported. +* Some PDF fonts do not include Cyrillic or other non-Latin characters. In such cases, [load a compatible font explicitly](slug:grid-kb-load-cyrillic-fonts-in-pdf-export). + ## Programmatic Export You can programmatically invoke the export feature of the Grid, by using the following methods exposed on the `@ref` of the Grid: @@ -194,26 +225,12 @@ You can programmatically invoke the export feature of the Grid, by using the fol To customize the exported file, handle the `OnBeforeExport` or `OnAfterExport` events the Grid exposes. -The component allows you to control the data set that will be exported. It also provides built-in customization options for the columns such as `Width`, `Title`, and more. The [column widths in the exported PDF file must be large enough, so that the cell content fits](#notes). Text wrapping is not supported. +The component allows you to control the data set that will be exported. It also provides built-in customization options for the columns such as `Width`, `Title`, and more. The [column widths in the exported PDF file must be large enough, so that the cell content fits](#limitations). Text wrapping is not supported. For more advanced customization the Grid lets you get the `MemoryStream` of the file. Thus, you can customize it using the [`PdfProcessing`](https://docs.telerik.com/devtools/document-processing/libraries/radpdfprocessing/overview) library that is available with your license. Read more about how to [customize the exported file](slug:grid-export-events). -## Notes - -The PDF export has the following specifics: - -* PDF export requires pixel widths for all columns. Widths in other units such as `%` or `em` cannot be translated correctly and the respective columns will collapse in the exported PDF file. The column widths for the PDF export can differ from the ones in the Grid configuration for the web browser. To set column widths for the PDF file only, use the `Width` property of the [`OnBeforeExportEventArgs.Columns`](slug:grid-export-events#for-pdf-export) members. -* For performance reasons, the PDF export mechanism draws each cell value on a single line. Any content that does not fit in the available space will be clipped. Text wrapping and PDF column resizing is not supported. -* Provide appropriate `PaperSize` and `PageOrientation` properties. For example, if you want to render 20 columns (100px each) in an A4 sheet, then this will yield unexpected results. The column dimensions in a PDF file are fixed, thus they cannot be resized as in Excel, which requires the developer to ensure proper export dimensions. -* Exporting to PDF in UI for Blazor is different from exporting in Kendo jQuery, where the full HTML is exported. The Blazor export to PDF will export the Grid to a table, similar to an Excel table. If you want [to export to PDF as HTML, you can use a custom approach](#custom-export). -* Some PDF fonts do not include Cyrillic or other non-Latin characters. In such cases, [load a compatible font explicitly](https://docs.telerik.com/devtools/document-processing/knowledge-base/pdfprocessing-implement-fontsprovider). -* Templates are not exported, because there is no provision in the framework for getting them at runtime. If a column, header or group header/footer has a template or aggregates, it will be ignored. The headers will be the `Title` of the column, the data is the data from the `Field`. If you need additional information, see if you can add it in a Field in the model, or create your own PDF file. Find a project example on how to generate your own exported file. Find additional information on how to [export an image that is rendered in a Grid column template](slug:grid-export-image-column-excel). - -@[template](/_contentTemplates/grid/export.md#export-common-notes) - - ## Custom Export If you want to have full control over the PDF export, you can perform it with a custom approach. @@ -228,3 +245,5 @@ The following sample projects show two ways to implement a PDF export * [Blazor Grid](slug:grid-overview) * [Live Demo: Grid Export](https://demos.telerik.com/blazor-ui/grid/export) +* [Sowing a Loader While Exporting the Grid](slug:grid-kb-show-loader-while-exporting) +* [Loading Cyrillic Fonts When Exporting the Grid to PDF](slug:grid-kb-load-cyrillic-fonts-in-pdf-export) \ No newline at end of file diff --git a/components/grid/toolbar.md b/components/grid/toolbar.md index e550ff93d..90a0cc24e 100644 --- a/components/grid/toolbar.md +++ b/components/grid/toolbar.md @@ -164,9 +164,14 @@ When using a ``, you need to use the `Tab` key to navigate
- - Add Employee - + Add Employee + +
+ Export to CSV + Export to Excel + Export to Pdf + +
+ + + + + + @@ -188,6 +199,8 @@ When using a ``, you need to use the `Tab` key to navigate @code { private string result; + private bool ExportAllPages { get; set; } + private void CreateHandler(GridCommandEventArgs args) { SampleData newItem = args.Item as SampleData; @@ -196,6 +209,14 @@ When using a ``, you need to use the `Tab` key to navigate result = string.Format("On {2} you added the employee {0} who was hired on {1}.", newItem.Name, newItem.HireDate, DateTime.Now); StateHasChanged(); } + + private List MyData = Enumerable.Range(1, 50).Select( + x => new SampleData + { + ID = x, + Name = "name " + x, + HireDate = DateTime.Now.AddDays(-x) + }).ToList(); //in a real case, keep the models in dedicated locations, this is just an easy to copy and see example public class SampleData @@ -205,13 +226,6 @@ When using a ``, you need to use the `Tab` key to navigate public DateTime HireDate { get; set; } } - public List MyData = Enumerable.Range(1, 50).Select( - x => new SampleData - { - ID = x, - Name = "name " + x, - HireDate = DateTime.Now.AddDays(-x) - }).ToList(); } ```` diff --git a/knowledge-base/grid-load-cyrillic-fonts-in-pdf-export.md b/knowledge-base/grid-load-cyrillic-fonts-in-pdf-export.md new file mode 100644 index 000000000..8fe72ff8c --- /dev/null +++ b/knowledge-base/grid-load-cyrillic-fonts-in-pdf-export.md @@ -0,0 +1,151 @@ +--- +title: Loading Cyrillic Fonts When Exporting the Grid to PDF +description: How to load Cyrillic fonts when exporting the Blazor Grid to PDF? +type: how-to +page_title: Loading Cyrillic Fonts When Exporting the Grid to PDF +slug: grid-kb-load-cyrillic-fonts-in-pdf-export +position: +tags: +res_type: kb +--- + +## Environment + + + + + + + + +
ProductGrid for Blazor
+ +## Description + +My Grid uses a Cyrillic font but when I export it to PDF the text is missing. How to ensure the text will be properly included in the exported PDF file when using a Cyrillic font? + +## Solution + +Some PDF fonts do not have Cyrillic (or other alphabets) characters. In such cases, you can load the fonts explicitly, so the proper texts appear in the exported Grid to PDF. + +For that purpose, use the Document Processing libraries to [implement a FontsProvider](https://docs.telerik.com/devtools/document-processing/knowledge-base/pdfprocessing-implement-fontsprovider) and load your desired font. + +The snippet below shows how to load an example Cyrillic font, so the Grid can properly export the data in Bulgarian language (that uses Cyrillic characters) to a PDF document. If you load a `helvetica-cyrillic.ttf` file in the `wwwroot` folder of your application, the export will work out of the box. + +>caption Load Cyrillic font for PDF export + +````RAZOR +@using System.Globalization +@using Telerik.Documents.Core.Fonts +@using Telerik.Windows.Documents.Extensibility +@using Telerik.Windows.Documents.Core.Fonts + +@inject IWebHostEnvironment HostEnvironment + + + + Експортирай в PDF + + + + + + + + + + + + + + + + + +@code { + private IEnumerable GridData { get; set; } + + private FontsProviderBase FontsProvider { get; set; } + + private bool ExportAllPages { get; set; } + + protected async override Task OnInitializedAsync() + { + var culture = new CultureInfo("bg-BG"); + CultureInfo.DefaultThreadCurrentCulture = culture; + CultureInfo.DefaultThreadCurrentUICulture = culture; + + InitFontsProvider(); + + GridData = Enumerable.Range(1, 100).Select(x => new Product + { + ProductId = x, + ProductName = $"Продукт {x}", + UnitsInStock = (short)(x * 2), + UnitPrice = 3.15m * x, + Discontinued = x % 4 == 0 ? "да" : "не", + }).ToList(); + } + + private void InitFontsProvider() + { + FontsProvider = FixedExtensibilityManager.FontsProvider; + var fontsProvider = new BlazorFontsProvider() + { + HostEnvironment = HostEnvironment + }; + FixedExtensibilityManager.FontsProvider = fontsProvider; + } + + public class BlazorFontsProvider : FontsProviderBase + { + public IWebHostEnvironment HostEnvironment { get; set; } + + public override byte[] GetFontData(FontProperties fontProperties) + { + // the code can be obtained from the Telerik DPL documentation + // https://docs.telerik.com/devtools/document-processing/knowledge-base/pdfprocessing-implement-fontsprovider + + var fontFileName = fontProperties.FontFamilyName + ".ttf"; + var path = Path.Combine(HostEnvironment?.WebRootPath); + // add this file to an appropriate folder, e.g. "wwwroot" + fontFileName = "helvetica-cyrillic.ttf"; + + var directory = new DirectoryInfo(path); + var fontFiles = directory.GetFiles(); + var fontFile = fontFiles.FirstOrDefault(f => f.Name.Equals(fontFileName, StringComparison.InvariantCultureIgnoreCase)); + + if (fontFile != null) + { + var targetPath = fontFile.FullName; + + using (FileStream fileStream = System.IO.File.OpenRead(targetPath)) + { + using (MemoryStream memoryStream = new MemoryStream()) + { + fileStream.CopyTo(memoryStream); + return memoryStream.ToArray(); + } + } + } + + return null; + } + } + + public class Product + { + public int ProductId { get; set; } + public string ProductName { get; set; } + public int UnitsInStock { get; set; } + public decimal UnitPrice { get; set; } + public string Discontinued { get; set; } + } +} +```` + +## See Also section + +* [Grid Export Overview](slug:grid-export-overview). +* [Grid Export to PDF](slug:grid-export-pdf) diff --git a/knowledge-base/grid-show-loader-while-exporting.md b/knowledge-base/grid-show-loader-while-exporting.md new file mode 100644 index 000000000..e127630c4 --- /dev/null +++ b/knowledge-base/grid-show-loader-while-exporting.md @@ -0,0 +1,120 @@ +--- +title: Showing a Loader While Exporting the Grid +description: Learn how to display a LoaderContainer over the Blazor Grid while it is exporting the items to Excel, CSV or PDF. +type: how-to +page_title: How to Show a Loader While Exporting the Grid +slug: grid-kb-show-loader-while-exporting +tags: grid, blazor, loader, loadercontainer, export, excel, csv, pdf +res_type: kb +ticketid: +--- + +## Environment + + + + + + + + +
ProductGrid for Blazor
+ +## Description + +I have many items in the Grid and the export to Excel, CSV or PDF takes a while. Is it possible to show a loader while the Grid is exporting to prevent the user from interacting with the component during this time? + +## Solution + +To display a loader over the Grid during the Excel, CSV or PDF export, follow the steps below: + +1. Choose the deired UI for the Loader (this article shows the first two options): + 1. A [LoaderContainer](slug: loadercontainer-overview). Place the LoaderContainer component in a container together with the Grid and add `position:relative` style on this container to ensure the LoaderContainer covers only the Grid. + 1. A modal [Window](slug: window-overview) with a [Loader](slug: loader-overview) component inside. + 1. Your custom loader. +1. Handle the [`OnBeforeExport` event](slug: grid-export-events#onbeforeexport) of the Grid to show the loader (set the loader's visibility to `true`). +1. Handle the [`OnAfterExport` event](slug: grid-export-events#onafterexport) of the Grid to hide the loader (set the loader's visibility to `false`). + +>caption Show a Loader during Grid export + +````RAZOR +@* Option 1.1. - a LoaderContainer *@ + +
+ + + + Export to Excel + + + + + + + + + + +
+ +@* Option 1.2. - a modal Window with a Loader component inside. *@ + +@* + Please wait... + + + We are exporting your data, your file will download shortly. + + *@ + +@code { + private bool isExporting { get; set; } + + private bool ExportAllPages { get; set; } = true; + + private List GridData { get; set; } + + private async Task OnExcelBeforeExport(GridBeforeExcelExportEventArgs args) + { + isExporting = true; + + // Release the UI thread so the loading indicator can be rendered + await Task.Delay(1); + } + + private async Task OnExcelAfterExport(GridAfterExcelExportEventArgs args) + { + isExporting = false; + } + + protected override void OnInitialized() + { + GridData = Enumerable.Range(1, 100000).Select(x => new SampleData + { + ProductId = x, + ProductName = $"Product {x}", + UnitsInStock = x * 2, + Price = 3.14159m * x, + Discontinued = x % 4 == 0, + }).ToList(); + } + + public class SampleData + { + public int ProductId { get; set; } + public string ProductName { get; set; } + public int UnitsInStock { get; set; } + public decimal Price { get; set; } + public bool Discontinued { get; set; } + } +} +```` + + +## See Also + +* [Grid Export Overview](slug: grid-export-overview) +* [Grid Export to CSV](slug: grid-export-csv) +* [Grid Export to Excel](slug: grid-export-excel) +* [Grid Export to PDF](slug: grid-export-pdf) +* [Grid Export Events](slug: grid-export-events)