Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
875
IPAD does not show Numeric Keypad
posted

Hi,

I have used webnumeric editor in my webapplication with its Spinner buttons.Problem is that these spinnar buttons are rarely usable in IPAD so user needs to type. But again problem is that when i put cursor inside the field than IPAD opens Alphabetical keypad and i have to change this again into number keypad.This is very annoying.

In html5 if i have used input type="number" then it directly opens a number keypad in ipad.

Do we have any prop in that control so that it can work in IPAD without any issue.

Below is my code:

 <ig:WebNumericEditor ID="Ft"   DataMode="Int"  runat="server" TabIndex="12" CssClass="input_TextControlClass"
                                    MinValue="0"  Height="22px">
                                    <Buttons SpinButtonsDisplay="OnRight" />
                                    <ClientEvents ValueChanged="SetSaveButtonEnabled" Blur="PreventNumericNegativeValue" />
                                </ig:WebNumericEditor>

Regards,

Vivek Mahawar

Parents
No Data
Reply
  • 49378
    Suggested Answer
    posted

    Hi Vivek,

    Thank you for posting in the community.

    In this scenario you can set the type attribute of the numeric editor's input field in order to achieve the desired effect. I suggest handling the clientside Initialize event of the control and calling:

         sender.get_inputElement().type = "number";

    Please let me know if this helps.

Children