This is such a Noob Gingrich question, I am sure that I am missing something simple.
Is there a trick to getting a text box to work on mobile devices? By work, I mean receiving text from the on-screen keyboard.
I have a mobile app in phonegapbuild. on one page there is a div containing a text box and a text box. When deployed on an Android or IOS device, the text field works just as expected, but when you enter the text field, it receives focus just fine, and the keyboard pops up, but nothing is entered into the text field.
<div id="drawerDetails">
<div id="drawerTitleWrapper" >
<input type="text" id="drawerTitle" />
</div>
<div id="drawerBodyWrapper" >
<textarea id="drawerBody" cols="50" rows="20" ></textarea>
</div>
</div>
<div class="submit">
<div id="newButton"></div>
</div>
<div id="close" data-bind="tap: $data.closeDrawer">
<img src="content/images/Close_CCCCCC.png" />
</div>
Hope I'm missing something easy.
source
share