I currently set some of my fields on my data grid with "c2" as the FormatString. When I generate .csv reports with XtraReports by printing on the XtraGrid, the thousands separator is included in the fields formatted as "c2". I don't want to include the comma in the exported .csvs as external systems have trouble importing the data.

What are my options to remove the comma in the fields in the .csv reports?

  • Can I just format the data with a preceding $ sign without the thousands separator in the data grid (and what would the FormatString be for that in this case). However, I do like visually having the separator on the grid, just not the .csv file.

  • Is there some sort of interceptor I can write that will remove commas during report generation?

link|improve this question

I don't know anything about XtraGrid and XtraReports, but could you derive new classes from them and override some of the methods? – Justin Morgan Feb 8 '11 at 2:59
does the report generation involve going back to the server to generate the CSV or does XtraReports produce the CSV on the client side from grid without going back to the server? – Shiv Kumar Feb 8 '11 at 9:22
Thanks guys for all your suggestions, I tried DevExpress Team's answer and it worked out – Luke Hutton Feb 9 '11 at 0:13
feedback

2 Answers

up vote 0 down vote accepted

I suggest that you clear the FormatString property before exporting the grid and revert this property value back when the exporting result is ready. This looks to be the easiest solution to this problem.

link|improve this answer
feedback

Hm... why don't you clone whole grid, assign the datasource to the new one, change the formatting and then print. Is that viable solution to you?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.