-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
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
IE11 radio button and checkboxes using button plugin don't work correctly when navigating with keyboard #16673
Comments
Could you post a JSBin demonstrating the isolated issue? |
http://jsbin.com/mogoqusuje/1/edit?html,css,output The bootstrap site also exhibits the issue. |
Does this happen in every browser? |
@animafact please don't post ads / links to third party sites unrelated to the issue. @mdo I believe so, or at least seems to in Chrome of OS X — Assuming that I understood correctly that left and right moves the active class and prevents the user from selecting the focused element (via space bar) but does not change the actual active radio, which is the behavior I experienced in the JSBin |
My guess is that this is being caused somewhere in https://github.com/twbs/bootstrap/blob/master/js/button.js#L56-L72 Removing the JS solves the value not moving but stops the active class from moving with the value. I'd need to dig in a little deeper to identify the exact cause in this |
Odd... in a further stripped JSBin where I only load the button JS, this seems to prove opposite. Overlap with another JS component potentially? — http://jsbin.com/tojiro/edit?html,css,js,output |
Ah, JSBin latest for bootstrap is still pointing to 3.3.4. Here is one that points to 3.3.5 - http://jsbin.com/gehiyohamu/edit?html,css,js,output - Chrome is fixed but IE11 still has the issue. I'm guessing Chrome wasn't working in 3.3.4. |
Had a quick look at it, IE11 no longer triggers the click event when the left and right arrows are used (IE10 works fine). So this line in the button-data api is never triggered,
Might need to listen to a change event on the radio inputs instead. |
Investigated this a bit further, and - unless I'm missing something - the radio buttons and checkboxes (using the button plugin) work as they should in firefox, chrome and edge, but do fail in IE11 (with a mismatch between what visually is being given the |
Bootstrap 3 is no longer being officially developed or supported. All work has moved onto our next major release, v4. As such, this issue or pull request is being closed as a "won't fix." For additional help and support, we recommend utilizing our community resources. Thanks for your understanding, and see you on the other side of v4! <3, |
Steps to reproduce
The left and right keys are triggering the input tags to change however the display is not being updated.
The text was updated successfully, but these errors were encountered: