-
Notifications
You must be signed in to change notification settings - Fork 13.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Text input in modal requires double tap to get soft keyboard on Android 4 #1133
Comments
Duplicate of #1134 |
I just pushed a large tap refactor to solve many of these issues: Would you be able to test the nightly build (1712 or later) and let us know if it solved this issue? Thanks Related: #862 #740 #726 #691 #689 #365 #26 #1134 #1120 #1105 #1078 #772 #745 |
This seems to be fixed - thanks :) Not sure if it's just me or not, but it looks like desktop Chrome doesn't allow you to open up select inputs? When I click it after upgrading it opens and then closes against straight away unless I hold down my click and drag my mouse over an option. |
@robdmoore Is this with emulating touch screen? Do you have a label around the select element? This is what I've been using to test: https://github.com/driftyco/ionic/blob/master/test/html/tapInputs.html#L132 |
Nah - it was on a non touch device with normal mouse. My html was: <ion-item class="item-input item-select">
<div class="input-label">Language</div>
<select ng-model="selectedLanguage.language" ng-options="c for c in languageNames"></select>
</ion-item> If I change that |
Getting same issue on Moto e (1st Gen.) Android 4.4 Ionic v 1.3.16 Will let you know about other devices. |
this seems to work for me: <!-- iOS Cordova prefers <span> instead of: <label class="item item-input"> -->
<span class="item item-input">
<input data-ng-model="newEvent.name" type="text" placeholder="Event Name"
required="true" autofocus="autofocus" autocomplete="off"
autocorrect="off" autocapitalize="off" spellcheck="false"></input>
</span> |
Hi,
If I put a form on a modal using nightly then on Android 4 when tapping one of the inputs it doesn't pull up the soft keyboard (there is a cursor in there though so the focus clearly happens) until a second tap.
Once the soft keyboard is up if you tap to another field then it's still OK.
I've replicated the problem here: http://plnkr.co/edit/cNJD8B0e2V6Ta4zHYLyH?p=preview
Thanks
The text was updated successfully, but these errors were encountered: