I have noticed that in an Android Cordova project anything with <input type="number">
includes a "next" button on the keyboard. This next button allows you to focus on the next input field when pressed. The same is not true for a <input type="text">
. In this case there is only a 'go' button and it does not do anything. How can I set focus to the next input field when inside a input text field? Thanks!
I am using Android Kit Kat with Cordova 3.3
UPDATE: I have found that it is possible to make the "next" button appear in Android by setting the android:imeOption
inside of <EditText android:imeOptions="actionNext"> </EditText>
. Is there a way to set that option in cordova?