Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
e041872
Update the sample link in Getting-Started.md
Hemalatha-SF4675 Sep 3, 2025
046a5c9
Update the changes
Hemalatha-SF4675 Sep 3, 2025
de24e0a
Update the changes
Hemalatha-SF4675 Sep 3, 2025
a823203
Removed sample link
Hemalatha-SF4675 Sep 4, 2025
57c22e0
Merge branch 'development' of https://github.com/syncfusion-content/m…
Hemalatha-SF4675 Sep 4, 2025
57e9719
Commit the changes
Hemalatha-SF4675 Sep 4, 2025
a74a6ee
Added the ug contents for Customizing Markdown elements.
DhanarajRajendran Sep 4, 2025
daf216d
Added the images for markdown customization
DhanarajRajendran Sep 4, 2025
bb6a2a9
Merge pull request #3602 from syncfusion-content/Tools-UG-Rich-text-e…
Choza-rajan Sep 5, 2025
5f80df5
Addressed the review suggestions.
DhanarajRajendran Sep 5, 2025
abd1806
Addressed the review suggestions.
DhanarajRajendran Sep 5, 2025
6784951
Addressed the review suggestions and Changed the gif to resolve the i…
DhanarajRajendran Sep 5, 2025
c181dfe
Merge pull request #3607 from syncfusion-content/mdViewer-ugChanges
Saravanan-Madhesh Sep 5, 2025
77723f9
Updated the RichTextEditor Sample link
Hemalatha-SF4675 Sep 5, 2025
3766a51
Update resource-view.md
SriRadheshNagS Sep 5, 2025
9ddf721
Merge pull request #3612 from syncfusion-content/NotesFix-Dve
saiganesh-sakthivel Sep 5, 2025
470ab80
commit
EzhilarasanElangovan31 Sep 5, 2025
460f696
commit
EzhilarasanElangovan31 Sep 5, 2025
8ce943a
Merge pull request #3613 from syncfusion-content/update-sunburst-mark…
Saravanan-Madhesh Sep 5, 2025
cc87a61
Update resource-view.md
NatarajanSF4844 Sep 8, 2025
c49bfed
977013 - Kanban UG code-snippet highlight
VishalOmprasad Sep 8, 2025
87bd9cc
Merge pull request #3619 from syncfusion-content/APILinks
saiganesh-sakthivel Sep 8, 2025
b4932f2
Merge pull request #3620 from syncfusion-content/Kanban-UG-highlight-dev
Choza-rajan Sep 8, 2025
ce029f0
Update the API links
Hemalatha-SF4675 Sep 8, 2025
72c3978
Updated in Common/migration.md
Hemalatha-SF4675 Sep 8, 2025
b2c7b5d
Fixed CI failure issue
Hemalatha-SF4675 Sep 8, 2025
d207e4c
Merge branch 'development' of https://github.com/syncfusion-content/m…
Hemalatha-SF4675 Sep 8, 2025
67c16ef
Update the review changes
Hemalatha-SF4675 Sep 8, 2025
d5cd30a
Merge pull request #3609 from syncfusion-content/Tools-UG-Rich-text-e…
Choza-rajan Sep 9, 2025
780a0dd
Added API links.
RasikaPalanisamy Sep 9, 2025
92456e6
Resolved conflicts.
RasikaPalanisamy Sep 9, 2025
d515917
Revert unnecessary code changes.
RasikaPalanisamy Sep 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MAUI/DataGrid/export-to-excel.md
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ private void ExcelExport_RowExporting(object sender, DataGridRowExcelExportingEv

## Exporting DetailsView

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`.
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](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.Exporting.DataGridExcelExportingOption.html#Syncfusion_Maui_DataGrid_Exporting_DataGridExcelExportingOption_CanExportDetailsView) property as true. You can customize its exporting operation by using [DataGridChildExcelExportingEventArgs](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.Exporting.DataGridChildExcelExportingEventArgs.html).

### Excluding DetailsViewDataGrid while exporting

Expand Down Expand Up @@ -1093,7 +1093,7 @@ Here, `DetailsViewDataGrid` is not exported for the parent record having OrderID

### Customizing DetailsViewDataGrid cells

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.
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](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.Exporting.DataGridCellExcelExportingEventArgs.html#Syncfusion_Maui_DataGrid_Exporting_DataGridCellExcelExportingEventArgs_DetailsViewDefinition) property, you can identify the specific DetailsViewDataGrid and make your customizations.

```csharp
private void Button_Clicked_1(object sender, EventArgs e)
Expand Down
10 changes: 5 additions & 5 deletions MAUI/DataGrid/export-to-pdf.md
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ private void PdfExport_CellExporting(object sender, DataGridCellPdfExportingEven

## Exporting DetailsView

By default, [DetailsViewDataGrid](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.DetailsViewDataGrid.html) will not be exported to PDF. You can export `DetailsViewDataGrid` by setting `CanExportDetailsView` property as true.
By default, [DetailsViewDataGrid](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.DetailsViewDataGrid.html) will not be exported to PDF. You can export `DetailsViewDataGrid` by setting [CanExportDetailsView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.Exporting.DataGridPdfExportingOption.html#Syncfusion_Maui_DataGrid_Exporting_DataGridPdfExportingOption_CanExportDetailsView) property as true.

```csharp
MemoryStream stream = new MemoryStream();
Expand All @@ -1163,7 +1163,7 @@ saveService.SaveAndView("ExportFeature.pdf", "application/pdf", stream);
```
<img src="Images\export-to-pdf\maui-datagrid-exportdetailsview.png" alt="Maui DataGrid displays Nested dataGrid exported to PDF" width="404"/>

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.
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](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.Exporting.DataGridPdfExportingOption.html#Syncfusion_Maui_DataGrid_Exporting_DataGridPdfExportingOption_CanExportAllDetails) to true.

```csharp
MemoryStream stream = new MemoryStream();
Expand All @@ -1181,9 +1181,9 @@ saveService.SaveAndView("ExportFeature.pdf", "application/pdf", stream);

Here, first record only expanded in SfDataGrid. But all the DetailsViewDataGrid’s are shown in exported PDF document.

You can customize its exporting operation by using `DataGridChildPdfExportingEventArgs`.
You can customize its exporting operation by using [DataGridChildPdfExportingEventArgs](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.Exporting.DataGridChildPdfExportingEventArgs.html).

N> While exporting DetailsViewDataGrid, `CanFitAllColumnInOnePage` is set to true internally as horizontal pagination is not supported for DetailsViewDataGrid.
N> While exporting DetailsViewDataGrid, [CanFitAllColumnInOnePage](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.Exporting.DataGridPdfExportingOption.html#Syncfusion_Maui_DataGrid_Exporting_DataGridPdfExportingOption_CanFitAllColumnsInOnePage) is set to true internally as horizontal pagination is not supported for DetailsViewDataGrid.

### Excluding DetailsViewDataGrid while exporting

Expand Down Expand Up @@ -1218,7 +1218,7 @@ Here, `DetailsViewDataGrid` is not exported for the parent record having OrderID

### Customizing DetailsViewDataGrid cells

Similar to the parent DataGrid, you can also customize the cells of the DetailsViewDataGrid by using the DataGridCellPdfExportingEventArgs. By utilizing the `DataGridCellPdfExportingEventArgs.DetailsViewDefinition` property, you can identify the specific DetailsViewDataGrid and customize it accordingly.
Similar to the parent DataGrid, you can also customize the cells of the DetailsViewDataGrid by using the DataGridCellPdfExportingEventArgs. By utilizing the [DataGridCellPdfExportingEventArgs.DetailsViewDefinition](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.Exporting.DataGridCellPdfExportingEventArgs.html#Syncfusion_Maui_DataGrid_Exporting_DataGridCellPdfExportingEventArgs_DetailsViewDefinition) property, you can identify the specific DetailsViewDataGrid and customize it accordingly.

```csharp
private void Button_Clicked_1(object sender, EventArgs e)
Expand Down