I have a RadGrid using XML file as data source and the field on this XML file is not formatted. We need to format the value in the field as percentage with two decimal digits and I have coded as shown below:
| <telerik:GridBoundColumn DataField="Percentage" HeaderText="Percentage" SortExpression="Percentage" |
| UniqueName="Percentage" DataFormatString="{0:#####.## %}" |
| EditFormHeaderTextFormat="{0:#####.## %}" > |
| </telerik:GridBoundColumn> |
However, no matter what I change on the DataFormatString the value shows without formatting. Can you please help? Thank you.