I have a problem with the RadInputManager control. I use a NumericTextBoxSetting control to assure that the user can only enter a decimal value in a text box.
On the same page there's a drop down list which forces the page to carry out a postback. If the culture is for example 'de' and the user enters a double value after a postback this value becomes an integer.
for example: 4,25 -> 425
If the culture is 'en' there's no problem.
Thanks,
Gerhard
<telerik:RadInputManager ID="imState" runat="server"> <telerik:NumericTextBoxSetting Type="Number" MinValue="0" DecimalDigits="2"> <TargetControls> <telerik:TargetInput ControlID="tbLength" /> </TargetControls> </telerik:NumericTextBoxSetting></telerik:RadInputManager>On the same page there's a drop down list which forces the page to carry out a postback. If the culture is for example 'de' and the user enters a double value after a postback this value becomes an integer.
for example: 4,25 -> 425
If the culture is 'en' there's no problem.
Thanks,
Gerhard