I have a RadNumericTextBox as below:
<telerik:RadNumericTextBox ID="txtCurSalBudget" runat="server" Enabled="False" >
<NumberFormat AllowRounding="false" />
</telerik:RadNumericTextBox>
When I move a value 23190642.0 to this textbox,it gets rounded and result is 23190640,even though AllowRounding="false".
How to avoid this rounding,so that I will get the actual value?