Does anyone know why radgrid export to CSV is trimming the trailing spaces from the CSV output and how to work around this issue?
grdExport.ExportSettings.ExportOnlyData =
true
;
grdExport.ExportSettings.IgnorePaging =
true
;
grdExport.ExportSettings.OpenInNewWindow =
true
;
grdExport.ExportSettings.FileName = DateTime.Now.ToString(
"yyyyMMdd"
) + filename;
grdExport.MasterTableView.ExportToCSV();