I need to know is there any function in sencha touch to know if the keyboard hides. I want to call a function when a keyboard hides.
Any Idea...
I need to know is there any function in sencha touch to know if the keyboard hides. I want to call a function when a keyboard hides.
Any Idea...
Pls check the below link. Hope this helps....
iPad Safari - Make keyboard disappear
To prevent showing the keyboard on:
<input type="text" name="someInput" />
for when you want to do something like use a jQuery UI datepicker...
add a readonly attribute like so:
<input type="text" name="someInput" readonly="readonly" />
If you are trying to be mindful of people with JS turned off, you could always leave off the attribute and add it in your code:
$('[name=someInput]').attr('readonly','readonly');