Disable keyboard popup

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

cc @PolygonalSun

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.

1 Like

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.

3 Likes