Hi,
I need some info on this issue since i cant find any documentation on this. I am using entity framework with ObjectDatasource and RadGrid. all the rest (Update,insert) commands are working fine but when I try delete this is the error i get "$5,450.36 is not a valid value for Decimal" . I have automatic deletes turned on the grid. On the backend I have a column of decimal (18,2) to store the currency data. How can I keep the currency formatting and get rid of this error on delete please let me know, I have tried
DataformatString = "{0:c}" and NumericType = "Currency"
but none of these are working?? please see below for my grid column definition. Please let me know how to do this as it is urgently needed. Thanks in advance
I need some info on this issue since i cant find any documentation on this. I am using entity framework with ObjectDatasource and RadGrid. all the rest (Update,insert) commands are working fine but when I try delete this is the error i get "$5,450.36 is not a valid value for Decimal" . I have automatic deletes turned on the grid. On the backend I have a column of decimal (18,2) to store the currency data. How can I keep the currency formatting and get rid of this error on delete please let me know, I have tried
DataformatString = "{0:c}" and NumericType = "Currency"
but none of these are working?? please see below for my grid column definition. Please let me know how to do this as it is urgently needed. Thanks in advance
<
telerik:GridNumericColumn
DataField
=
"payment_rate"
DataType
=
"System.Decimal"
NumericType
=
"Currency"
UniqueName
=
"payment_rate"
AutoPostBackOnFilter
=
"true"
HeaderText
=
"Payment Rate"
DecimalDigits
=
"2"
>
<
HeaderStyle
HorizontalAlign
=
"Left"
Width
=
"10%"
/>
<
ItemStyle
HorizontalAlign
=
"Left"
/>
</
telerik:GridNumericColumn
>