Hello, is there any way to disable the pop-up prompt when clicking inputText in mobile terminal? Or I can disable the pop-up soft keyboard, because I want to write a set of soft keyboard, not the phone keyboard.
thank you
Hello, is there any way to disable the pop-up prompt when clicking inputText in mobile terminal? Or I can disable the pop-up soft keyboard, because I want to write a set of soft keyboard, not the phone keyboard.
thank you
ping again @PolygonalSun
Here are some tips - javascript - prevent iphone default keyboard when focusing an <input> - Stack Overflow
By adding the attribute readonly
(or readonly="readonly"
) to the input field you should prevent anyone typing anything in it, but still be able to launch a click event on it.
Hey, sorry about missing post but you should be able to disble the pop-up by just setting the InputText
object’s disableMobilePrompt
to true.