Hi - I have an integer value that is being pulled from my db and displayed in my grid like this:
| <telerik:GridBoundColumn DataType="System.Int32" UniqueName="UserAccountStatus" |
| SortExpression="UserAccountStatus" HeaderText="Status" DataField="UserAccountStatus"></telerik:GridBoundColumn> |
But that value is actually the numeric value of an enum. So - rather than displaying the numeric value of the enum, I need to display the text value of the enum.
How do I do this?
Thanks.