Hi again
I've got a couple more problems with the export to CSV:
1) Data is automatically enclosed in double-quotes ("); how can I remove them?
2) FileExtension property doesn't work properly. If I enter it as "csv", it's ignored, if I enter ".csv" it adds the dot and my filename looks like "Export..csv"
3) header is exported; how can I remove that?
Here's the complete code:
gridExport.ShowHeader =
false;
gridExport.ExportSettings.ExportOnlyData = true;
gridExport.ExportSettings.Csv.ColumnDelimiter = GridCsvDelimiter.Semicolon;
gridExport.ExportSettings.Csv.RowDelimiter = GridCsvDelimiter.NewLine;
gridExport.ExportSettings.Csv.FileExtension = "csv";
gridExport.MasterTableView.ExportToCSV();
Does anyone have a solution/ ideas?
Regards,
Andrea
P.S.: I'm working since quite some time already with the RadControls and I really love them! But this CSV export seems to me quite buggy (also when looking at older forum post).
Dear Telerik team, please test that carefully.