Hi,
I am having an issue with the RadNumericTextBox. When I enter a decimal followed by a number using the numeric keyboard it swaps the value around. For example instead of being .5 it will be 5
To emulate it what you need to do is
1. Copy the code below.
<
telerik:RadNumericTextBox
ID
=
"ntxtMaxWorkHoursSitting"
runat
=
"server"
Width
=
"80px"
CausesValidation
=
"true"
Type
=
"Number"
MinValue
=
"0"
MaxValue
=
"24"
ShowSpinButtons
=
"true"
IncrementSettings-Step
=
"0.5"
>
<
NumberFormat
DecimalDigits
=
"2"
/>
</
telerik:RadNumericTextBox
>
2. Run the website
3. Enter some value into the RadNumericTextbox (e.g. 5) then click away and the value will turn into a decimal (e.g. 5.00)
4. Highlight the result (Just need to click back in there and it will highlight it for you)
5. Press the decimal key on the numeric keyboard (The decimal on the normal keyboard works fine) and then press 5
it should say .5 but instead it will change it to 5
Is there a fix to this or a way around this?
thanks in advance,
Karl