Here is my input manager
When I press the enter key in my numeric and decimal text boxes, I get the invalid character warning.
The ascii text box doesn't complain. The enter key doesn't do anything though. I'm not sure if it's supposed to do a commit or not. Anyway I don't think pressing enter in a numeric text box should give me a warning. Thanks.
| <telerik:NumericTextBoxSetting BehaviorID="NumericSettings" EnabledCssClass="numeric" FocusedCssClass="numeric" InitializeOnClient="true" Type="Number" DecimalDigits="0" GroupSizes="3" GroupSeparator="," PositivePattern="n" NegativePattern="-n"> |
| <TargetControls> |
| <telerik:TargetInput ControlID="dummy1" /> |
| </TargetControls> |
| </telerik:NumericTextBoxSetting> |
| <telerik:NumericTextBoxSetting BehaviorID="DecimalSettings" EnabledCssClass="decimal" FocusedCssClass="decimal" InitializeOnClient="true" Type="Number" DecimalDigits="1" GroupSizes="3" GroupSeparator="," PositivePattern="n" NegativePattern="-n"> |
| <TargetControls> |
| <telerik:TargetInput ControlID="dummy2" /> |
| </TargetControls> |
| </telerik:NumericTextBoxSetting> |
| <telerik:TextBoxSetting BehaviorID="TextSettings" EnabledCssClass="ascii" FocusedCssClass="ascii" InitializeOnClient="true" > |
| <TargetControls> |
| <telerik:TargetInput ControlID="dummy3" /> |
| </TargetControls> |
| </telerik:TextBoxSetting> |
| </telerik:RadInputManager> |
When I press the enter key in my numeric and decimal text boxes, I get the invalid character warning.
The ascii text box doesn't complain. The enter key doesn't do anything though. I'm not sure if it's supposed to do a commit or not. Anyway I don't think pressing enter in a numeric text box should give me a warning. Thanks.