Hi team,
Hereunder is what I find in your site..
<SfButton OnClick="OnExcelExport" Content="Excel Export"></SfButton>
public void OnExcelExport(Microsoft.AspNetCore.Components.Web.MouseEventArgs args) {
Syncfusion.Blazor.Grids.ExcelExportProperties excelExportProperties = new Syncfusion.Blazor.Grids.ExcelExportProperties()
{
FileName = "sample.xlsx"
};
this.pivot.ExportToExcelAsync(excelExportProperties);\
How can I apply save as or Save file dialog on it. ?
So the user may change the file path and
filename dynamically before the download.
Best regard,
Tyrone