Notice: The Monaca & Onsen UI Community Forum is shutting down.
For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.
Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.
Change Keyboard on Form
-
Hello, guys.
I have searched about this in forums, the documentation for the ONSEN and Monaca, but without success.
How do I get to appear on the keyboard “next” button to go to the next item in the form, until it reaches its final and appear the “enter” or “go”.
Thanks in advance.
-
@Vitor-Vieira For Android example, I don’t think Onsen has an
imeOptions
equivalent. I am not 100% on this other than there is the type attribute for HTML5 inputs. Some examples are here: http://www.petefreitag.com/item/768.cfmAdditionally, I know with Android a lot of the soft keys are auto displayed based on the
<form>
tag and the number of elements. Are your fields wrapped in this tag, even if you are not using it?
-
@munsterlander .Yes they are. Actually the keyboard changes according to the “type”, but not with the “form”. Theoretically, recognizing the <form> tag, the keyboard should adapt and put the “next” button.
Taking the opportunity, does anyone know how I control the keyboard to open or close? If an event “X” occur, I would close it … or open it. Does anyone know the control command in MONACA X ONSEN?
-
@Vitor-Vieira You are correct on the keyboard changing per type, but what I meant was when you have the same types of inputs in a form, it will detect the number of say text inputs and when on the last one switch to done - at least in my experience with forms and Android.
This posting may be of use: http://stackoverflow.com/questions/6545086/html-why-does-android-browser-show-go-instead-of-next-in-keyboard
-
@munsterlander
Thanks, it was very useful your tips! Hugs