diff --git a/blazor/datagrid/column-menu.md b/blazor/datagrid/column-menu.md index 8117197d42..f32d0768db 100644 --- a/blazor/datagrid/column-menu.md +++ b/blazor/datagrid/column-menu.md @@ -270,7 +270,7 @@ The following sample, **Filter** item was hidden in column menu when opens for t {% highlight razor tabtitle="Index.razor" %} @using Syncfusion.Blazor.Grids - + @@ -365,7 +365,7 @@ Here is an example of how to configure the `ColumnMenuItems` property to include @using Syncfusion.Blazor.Navigations - + diff --git a/blazor/datagrid/data-binding/local-data.md b/blazor/datagrid/data-binding/local-data.md index 9517129e9d..b25b8ad6c7 100644 --- a/blazor/datagrid/data-binding/local-data.md +++ b/blazor/datagrid/data-binding/local-data.md @@ -612,6 +612,7 @@ Below is an example showing how to implement grouping and aggregates in a custom @using Syncfusion.Blazor.Grids @using Syncfusion.Blazor.Data +@using Syncfusion.Blazor @using System.Data @using System.Dynamic @using System.Collections diff --git a/blazor/datagrid/excel-export-options.md b/blazor/datagrid/excel-export-options.md index beb657ce56..9457dc8a4e 100644 --- a/blazor/datagrid/excel-export-options.md +++ b/blazor/datagrid/excel-export-options.md @@ -1,7 +1,7 @@ --- layout: post title: Excel Export in Blazor DataGrid | Syncfusion -description: Checkout and learn here all about Excel Export in Syncfusion Blazor DataGrid component and much more. +description: Checkout and learn here all about Excel Export Options in Syncfusion Blazor DataGrid component and much more. platform: Blazor control: DataGrid documentation: ug @@ -1560,7 +1560,7 @@ In the **Index.razor** file, the Grid is set up, the export operation is trigger @using Syncfusion.ExcelExport; @inject IJSRuntime JSRuntime - + @@ -1641,7 +1641,8 @@ public class OrderData {% endhighlight %} {% endtabs %} -> You can find a complete sample on [GitHub](https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting_Memory_Stream/Exporting_Stream). +> You can find a complete sample on [GitHub] +(https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting_Memory_Stream/Exporting_Stream). ### Converting Memory Stream to File Stream for Excel Export @@ -1753,11 +1754,12 @@ public class OrderData {% endhighlight %} {% endtabs %} -> You can find a complete sample on [GitHub](https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Converting%20_Memory%20_File_Stream/Exporting_Stream). +> You can find a complete sample on [GitHub] +(https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Converting%20_Memory%20_File_Stream/Exporting_Stream). ### Merging Two Excel Memory Streams -When merging two Excel memory streams and exporting the combined file as an Excel workbook, you can use the [Syncfusion.Blazor.XlslO](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core/) library to efficiently copy worksheets either between different workbooks or within the same workbook. +When merging two Excel memory streams and exporting the combined file as an Excel workbook, you can use the [Syncfusion.Blazor.XlsIO](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core/) library to efficiently copy worksheets either between different workbooks or within the same workbook. The example below demonstrates how to merge two memory streams and export that merged memory stream for browser download. @@ -1902,4 +1904,5 @@ public class OrderData {% endhighlight %} {% endtabs %} -> You can find a complete sample on [GitHub](https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Merging_Two_Excel_Memory%20_Streams/Exporting_Stream). \ No newline at end of file +> You can find a complete sample on [GitHub] +(https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Merging_Two_Excel_Memory%20_Streams/Exporting_Stream). \ No newline at end of file diff --git a/blazor/datagrid/pdf-export-options.md b/blazor/datagrid/pdf-export-options.md index a70f7dacce..6cfda467b1 100644 --- a/blazor/datagrid/pdf-export-options.md +++ b/blazor/datagrid/pdf-export-options.md @@ -1,7 +1,7 @@ --- layout: post title: PDF Export Options in Blazor DataGrid | Syncfusion -description: Checkout and learn here all about PDF Export Options in Syncfusion Blazor DataGrid and much more. +description: Checkout and learn here all about PDF Export Options in Syncfusion Blazor DataGrid and much more details. platform: Blazor control: DataGrid documentation: ug @@ -1055,7 +1055,8 @@ In the following example, the [Blazor Toggle Switch Button](https://blazor.syncf ![Enabling horizontal overflow](./images/Enabling-horizontal-overflow.gif) -> You can find a complete sample on [GitHub](https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting-PDF-Datagrid/Horizontal_overflow). +> You can find a complete sample on [GitHub] +(https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting-PDF-Datagrid/Horizontal_overflow). ## Customizing columns on export @@ -1575,7 +1576,7 @@ In the following demo, the [DrawString](https://help.syncfusion.com/cr/document- ExportProperties.BeginCellLayout = new PdfGridBeginCellLayoutEventHandler(BeginCellEvent); ExportProperties.FileName = "test.pdf"; ExportProperties.IsRepeatHeader = true; - await this.DefaultGrid.PdfExport(ExportProperties); + await this.DefaultGrid.ExportToPdfAsync(ExportProperties); } } @@ -1688,7 +1689,8 @@ public class OrderData ![PDF Exported Grid Cell Customization in Blazor DataGrid](./images/blazor-datagrid-pdf-exported-grid-cell-customization.png) -> You can find a complete sample on [GitHub](https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting-PDF-Datagrid/Rotate_header). +> You can find a complete sample on [GitHub] +(https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting-PDF-Datagrid/Rotate_header). ## Exporting Blazor DataGrid data as stream @@ -1845,7 +1847,8 @@ public class OrderData {% endhighlight %} {% endtabs %} -> You can find a complete sample on [GitHub](https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting-PDF-Datagrid/Blazor_Memory_Stream). +> You can find a complete sample on [GitHub] +(https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting-PDF-Datagrid/Blazor_Memory_Stream). ### Converting memory stream to file stream for PDF export @@ -1952,7 +1955,8 @@ The example below demonstrates how to achieve this by converting the memory stre {% endhighlight %} {% endtabs %} -> You can find a complete sample on [GitHub](https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting-PDF-Datagrid/PDF_Converting_Memory_Stream). +> You can find a complete sample on [GitHub] +(https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting-PDF-Datagrid/PDF_Converting_Memory_Stream). ### Merging two PDF memory streams @@ -2100,4 +2104,5 @@ public class OrderData {% endhighlight %} {% endtabs %} -> You can find a complete sample on [GitHub](https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting-PDF-Datagrid/Merging_Two_PDF_Memory_Stream). \ No newline at end of file +> You can find a complete sample on [GitHub] +(https://github.com/SyncfusionExamples/exporting-blazor-datagrid/tree/master/Exporting-PDF-Datagrid/Merging_Two_PDF_Memory_Stream). \ No newline at end of file