-
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
iOS: Input fields don't loose focus when clicking outside #5020
Comments
I think this is kind of important. The keyboard cannot be dismissed on iOS during form capture. Is there any chance this can be moved into beta 4? Or is there a work around available? Note that this happens on the iOS simulator and iOS devices. |
@dylanvdmerwe: I ended up kludging a very blunt-force workaround when this issue came up in my user testing a few weeks ago. I can't say I recommend it and it almost certainly has problematic side-effects. But just in case the idea is helpful: I added a click handler to my outermost ion-content directive that forcibly blurs any active text input field, so taps on the page background result in the desired outcome of removing focus from an input field and dismissing the keyboard. Be warned that limited testing has already revealed that event bubbling defaults are very different on Android, where this caused inputs to be unselectable. The click event to focus an input was passed through to the parent directive which immediately unfocused it again.
|
I am having this happen with the search bar in the latest beta. |
I am currently experiencing this issue in 2.0.0-rc2 :(. It is only happening on iOS 10 but not on Android. |
@jesusbotella did you find a solution to this? This makes the app mostly unusable. We may just downgrade to rc1 until this is resolved. |
I having this same issue with rc1 and rc2 |
Same problem here on IOS with : Cordova CLI: 6.3.1 |
@Xal3ph I used the solution provided by @EvanWillms, but unfortunately, I didn't find any other solution :( |
Same issue. |
Same issue here, and I am really concerned about making workarounds with that kind of basic UI behaviors, specially if you are targeting more then one platform, which all of us probably do. The team have any suggestion or any position about this issue? Cordova CLI: 6.4.0 |
We have not been able to replicate this in our test. Can someone please open a new issue with all the required information on how to replicate |
I can only reproduce this in a private project. However, I was able to fix it by binding to the click event on I don't have the time to debug this myself now, but this suggests that there is a race condition of some sort causing this bug. Ionic info:
|
Same here. My workaround (I've got my input in a footer and nothing selectable in my content):
|
Same here. Repro here:
throw in a input in to the content:
clicking anywhere won't lose the focus on the input. so it's basically impossible to close it. Ionic Info: Your system information:
iPhone6 used the same work around as @cmorbitzer |
Wait, seriously? This hasn't actually been fixed in the framework? |
There are a whole bunch of updates coming soon to ionic that deal with keyboard and inputs. Also, make sure to use the wkwebview plugin for iOS. |
I used wkwebview plugin and it solves this issue but this plugin have an issue with the http request :( is there any solution for this ? |
Has this got anything to do with Ionic ? This is a bug I find with safari on ios. Once you focus on an input field or text field safari will not blur the element unless you click/touch another focusable element or you click the "Done" button on iphone or "keyboard close" button on ipad. iOS 11.2.1 Phone I would consider this a bug with iOS and safari but I would imagine in their eyes it is a feature : ) |
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out. |
From @flavordaaave on January 7, 2016 11:16
How to reproduce:
=> Input remains focused and keyboard stays up
Expected behavior:
=> Input looses focus and keyboard slides out.
Copied from original issue: driftyco/ionic2#885
The text was updated successfully, but these errors were encountered: