When exporting to a CSV file the download works as expected with the delimiter set to comma. Once the delimiter is changed to any other value, i.e. Semicolon, Vertical bar the file opens in the browser window instead of downloading.
Is there a way to initiate the download instead of opening the file in a browser window?
Hi Lee,
I tried to replicate the issue but without success. For your convenience, I prepared a runnable ASP.NET website project with the latest version which demonstrates how to export the CSV file and download it regardless of the chosen delimiter.
Also, make sure that the ExportSettings OpenInNewWindow setting is set to true.
RadGrid.ExportSettings.OpenInNewWindow = true;
<ExportSettings OpenInNewWindow="true"><CsvSettings ... />
</ExportSettings>