Welcome to the ASP.NET Core feedback portal. We’re happy you’re here! If you have feedback on how to improve the ASP.NET Core, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
In the EJ2.Grids.Grid when exporting to csv exporting has to be set with the same property and events as for excel using allowExcelExport, excelExportComplete. (Which works just fine for both). eg:
ejs-grid id="Grid" dataSource="@Model.Measures"
allowExcelExport="true" allowPdfExport="true"
toolbar="@(new List
pdfExportComplete="pdfExportComplete" excelExportComplete="excelExportComplete"
It would be nice if there were seperate properties and events for csv exporting eg allowCsvExport, csvExportComplete to allow a choice to be made and a differentiation between the type of export completed. eg:
ejs-grid id="Grid" dataSource="@Model.Measures"
allowPdfExport="true" allowCsvExport="true"
toolbar="@(new List
pdfExportComplete="pdfExportComplete" csvExportComplete="csvExportComplete"