We are using RadNumericTextBox with decimal digits allowed:(see the markup below)
The problem we are facing is, when we manually put a decimal value, while using spin button to increment/ decrement, the value wont increase/ decrease after a random number.
e.g. type 5.2 in text box now try to decrease by clicking on down arrow(spin button), for me it wont decrease beyond 2.2
similarly for decimal value of 2 digit, problem would occur for both increment and decrement.(for me on giving 12.44, it give problem at 8.44 on decreasing and 15.44 on increasing)
Version Used: 2012.1.215.35
<
telerik:RadNumericTextBox
ID
=
"txtSomeData"
runat
=
"server"
Font-Names
=
"tahoma, sans-serif"
Font-Size
=
"11px"
MaxLength
=
"5"
MaxValue
=
"24"
MinValue
=
"0"
Width
=
"90px"
ShowSpinButtons
=
"true"
Type
=
"Number"
Value
=
"0.0"
>
<
NumberFormat
DecimalDigits
=
"2"
PositivePattern
=
"n hours"
DecimalSeparator
=
"."
AllowRounding
=
"true"
/>
<
InvalidStyle
ForeColor
=
"Crimson"
/>
<
EnabledStyle
HorizontalAlign
=
"Center"
CssClass
=
"fieldlabelSmall"
/>
</
telerik:RadNumericTextBox
>
The problem we are facing is, when we manually put a decimal value, while using spin button to increment/ decrement, the value wont increase/ decrease after a random number.
e.g. type 5.2 in text box now try to decrease by clicking on down arrow(spin button), for me it wont decrease beyond 2.2
similarly for decimal value of 2 digit, problem would occur for both increment and decrement.(for me on giving 12.44, it give problem at 8.44 on decreasing and 15.44 on increasing)
Version Used: 2012.1.215.35