Reputation: 948
I use Cordova 2.9.0 and Android whit minimun api 10. I have the follow inputs:
<input class='inputSignup' id='name' type='text' placeholder='Nombre'>
<input class='inputSignup' id='lastname' type='text' placeholder='Apellidos'>
<input class='inputSignup' id='email' type='email' placeholder='Correo'>
<input class='inputSignup' id='pass' type='password' placeholder='Contraseña'>
<input class='inputSignup' id='pass1' type='password' placeholder='Repita su contraseña'>
<input id='sigup' type='button' value='Registrame'>
The problem is in the first input. If I click it don´t appear the keyboard, but If I click on the others input the keyboard appear. I don´t understand this behavior. Any ideas?
Upvotes: 0
Views: 222
Reputation: 936
You have to edit config.xml file.
Change <preference name="fullscreen" value="true" />
value to false
.
Upvotes: 1