Skip to content

Commit a8f040d

Browse files
committed
review changes
1 parent bb9dc79 commit a8f040d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
83.7 KB
Loading

MAUI/DataGrid/export-to-excel.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1053,11 +1053,11 @@ private void ExcelExport_RowExporting(object sender, DataGridRowExcelExportingEv
10531053
{% endhighlight %}
10541054
{% endtabs %}
10551055

1056-
### Exporting DetailsView
1056+
## Exporting DetailsView
10571057

10581058
By default, [DetailsViewDataGrid](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.DetailsViewDataGrid.html) will not be exported to Excel. You can export `DetailsViewDataGrid` by setting `CanExportDetailsView` property as true. You can customize its exporting operation by using `DataGridChildExcelExportingEventArgs`.
10591059

1060-
## Excluding DetailsViewDataGrid while exporting
1060+
### Excluding DetailsViewDataGrid while exporting
10611061

10621062
You can exclude particular DetailsViewDataGrid while exporting by using the `DataGridChildExcelExportingEventArgs.Cancel` property.
10631063

@@ -1091,7 +1091,7 @@ private void ExcelExport_DataGridChildExcelExporting(object? sender, DataGridChi
10911091

10921092
Here, `DetailsViewDataGrid` is not exported for the parent record having OrderID as 1002.
10931093

1094-
## Customizing DetailsViewDataGrid cells
1094+
### Customizing DetailsViewDataGrid cells
10951095

10961096
Similar to the parent DataGrid, you can also customize the cells of the DetailsViewDataGrid using the [DataGridCellExcelExportingEventArgs](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.Exporting.DataGridCellExcelExportingEventArgs.html). By utilizing the `DataGridCellExcelExportingEventArgs.DetailsViewDefinition` property, you can identify the specific DetailsViewDataGrid and make your customizations.
10971097

MAUI/DataGrid/export-to-pdf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1161,7 +1161,7 @@ pdfDoc.Close(true);
11611161
SaveService saveService = new();
11621162
saveService.SaveAndView("ExportFeature.pdf", "application/pdf", stream);
11631163
```
1164-
<img src="Images/export-to-pdf/maui-datagrid-exportdetailsview.png" alt="Maui DataGrid displays Nested dataGrid exported to PDF" width="404"/>
1164+
<img src="Images\export-to-pdf\maui-datagrid-exportdetailsview.png" alt="Maui DataGrid displays Nested dataGrid exported to PDF" width="404"/>
11651165

11661166
By default, only expanded DetailsViewDataGrids will be exported to the PDF document. If you want to export all the DetailsViewDataGrids, you need to set `CanExportAllDetails` to true.
11671167

0 commit comments

Comments
 (0)