Hello,
I am using the grid control to display data and export it in CSV format. Everything works fine except when the data contains diacritics.
For example, I am getting the following result:
Nome,Documento de identificação,Código,Observações
Ana Catarina,084379,00077,Importado.
João Tomás,778831,00078,Importado.
The correct result should be:
Nome,Documento de identificação,Código,Observações
Ana Catarina,084379,00077,Importado.
João Tomás,778831,00078,Importado.
Code to export the data:
private SfGrid<ImportedUser> GridImportResult { get; set; }
...
private async Task ExportCSVAsync()
{
ExcelExportProperties exportProperties = new();
exportProperties.FileName = "ImportResult.csv";
await GridImportResult.CsvExport(exportProperties);
}
Any help would be appreciated. Thank you.
Kind regards,
Álvaro