I'm trying to use a GridNumericColumn in a Grid using InPlace editing. The field is a decimal 18,10 in Sql Server. Length of 8 to left and 10 to right of decimal. The field displays properly in both item and edit modes. However, when you click on the field to edit, the field cuts off to only 2 decimal places to the right. I've tried several different things but haven't got it to work. I figured there be a decimal postion property but don't see one. The line is listed below in its current format. But this isn't working properly.
Thanks
| <telerik:GridNumericColumn UniqueName="Reduction" SortExpression="Reduction" HeaderText="Reduction" DataField="Reduction" FooterText="NumericColumn footer" NumericType="Number" AllowRounding="false" DataType="System.Decimal" KeepNotRoundedValue="true" DataFormatString="{0:F10}" > |
| </telerik:GridNumericColumn> |
Thanks