Cordova keyboard hides inputs

0

I'm developing a aplicativo hibrido that I use Cordova plus HTML5 + jQuery and I'm having a problem. When I click on the text field to type something the automatic keyboard event is triggered and the keyboard positions itself on top of my inputs.

Ideally, when you click on some input a div of the keyboard size will appear to allow you to scroll down to see what you are typing.

How do I resolve this? Is there a function that does this automatically, or should I program something? If yes, how to do this?

    
asked by anonymous 13.10.2015 / 15:17

1 answer

1

Renan, there is a solution to this and it is not with the div as you suggested. It is simply a config.xml configuration. See:

<preference name="fullscreen" value="false" />

    
14.10.2015 / 05:48