-
Notifications
You must be signed in to change notification settings - Fork 27.4k
select/ngOptions fails to update model after keyboard selection #9134
Comments
+1 |
OTOH, it's because we aren't getting a change event. If we are in fact getting a change event then this is weird and warrants more investigation (this issue has been reported before however, I suggest reviewing old issues to find them). |
What browser are you seeing this in? I can't seem to reproduce in Chrome |
I'm using Chrome 37.0.2062.120 m in windows and I can reproduce the same bug, Chrome is in the latest version have no updates available |
you could try in chrome 39 --- but yes, this sort of thing would be a browser bug (if we aren't getting the event we expect) |
I attached an event listener to the So it would appear you are correct @caitp, it seems it could be a browser bug after all. Although, I can't seem to recreate it without angular... |
hmm it may be in angular actually. if i remove the default |
I don't know if we can call this a bug, but it's certainly inconsistent. Some obesrvations:
This answer on StackOverflow has some interesting info: It seems that according to the spec "the From what I read and what I understand, most vendor do not follow the "fire on blur" rule, but instead fire the event when the element's value has been committed by the user. The problem is that each vendor seems to have their own interpretation about when a value has been commited. Anyway, the point is that I don't expect we can get any consistent behaviour if we rely on the |
Consistent behaviour doesn't really matter here (insofar as ensuring that we consistently update the model at the same time), because we don't need to change the model before a user commits to a value --- however the problem is that we aren't changing the value at all in these cases, which indicates that the change event isn't being dispatched at all. That is a much bigger problem (https://html.spec.whatwg.org/multipage/forms.html#event-input-change for reference) |
After some further investigation of this, the issue only occurs when the angular event loop occurs. It seems that after the first change, the listener is somehow disabled (as no events fire on it). Then when you cause another change, it is back. I commented out the code which iterates over event callbacks. So the angular callback is entered but doesn't fire the function the select directive defines. It then works fine, fires events as expected. So whatever the callback select adds does, somehow causes the next set of events to not fire. |
It would be worth testing without ngOptions. I think it is specific to that, maybe related to the code which recomputes the options each time validate and parse runs. As that probably alters the DOM? |
See the following: Removed ngOptions to help narrow the problem down. It appears that angular adds an option |
@43081j: The problem appears even without the This might have something to do with Angular trying to reuse existing |
Yup I see. It is definitely related to angular removing/changing If I force it to not remove that option, it works fine. If I skip the code which reuses |
It is a browser bug. http://plnkr.co/edit/hJx7nOFavOg98btF0ixN?p=preview It occurs when you remove (or maybe change) an Leads me to believe its some bug with chrome keeping track of options, indexes changing etc. |
@43081j, I believe this is how you meant the plunkr to work: http://plnkr.co/edit/4dOxvFpQZMwHl0nPVhHL?p=preview Indeed, it seems to be a browser issue. |
ah yes my mistake, I assigned the event return to the var instead of the actual callback. I raised an issue on chrome's tracker for this also, FYI. |
@43081j: It would be good to post the link here for reference. |
Here you go: May be wrong to place it in their JS category, I'm not sure where it fits. |
It might make sense to track both issues separately: This here for Chrome not firing change when an option is removed (probably), see https://code.google.com/p/chromium/issues/detail?id=415505 And another one for Firefox because it is not firing change when the select value is changed via keyboard. There was one already, but it's closed now: #4216 @caitp, what's the policy on browser bugs (https://bugzilla.mozilla.org/show_bug.cgi?id=126379)? I think keep them open either until the vendor fixes them or we implement a workaround, right? |
+1, this issue is causing me problems so glad you've narrowed this down. It's definitely a bug in Blink/WebKit as it affects Opera as well, maybe we should file a bug report there too? And IE fires the |
I just closed some duplicates of this issue, so here's a quick recap: Chrome (Blink) / Safari (webkit) has a bug not firing change when an option is removed. Bug filed as https://code.google.com/p/chromium/issues/detail?id=415505 (Bug is fixed in Chrome) Firefox basically follows the "spirit of the spec" by not firing change when the select value is changed via keyboard, but Chrome and IE do it, so it coud be considered a bug. Tracked as https://bugzilla.mozilla.org/show_bug.cgi?id=126379. As a workaround, you can add a directive that fires the change event on keyup (thanks to @gkalpak for this): directive('changeOnKeyup', function changeOnKeyupDirective() {
return function changeOnKeyupPostLink(scope, elem) {
elem.on('keyup', elem.triggerHandler.bind(elem, 'change'));
};
}); |
@Narretz Isn't that a memory leak? You need a $destroy handler to remove the |
The Chrome has been fixed: https://code.google.com/p/chromium/issues/detail?id=415505 |
Wrt the Firefox behavior, we have to accept that this is a browser quirk that must be fixed by Firefox, or worked around as specified. I have added a note in the select docs (dcc57f1) and will close this issue. |
The issue in question has been resolved some time in 2017. The bug report is still open, but the behavior has changed: https://bugzilla.mozilla.org/show_bug.cgi?id=126379 Let's hope they have tests for this! Related #9134
See here:
http://plnkr.co/edit/9VymegmYt3tZPTH65Gj8?p=preview
Follow these steps:
a
See that
foo
is now incorrect. If you use the mouse to select another and then reselect the same one, it then updates correctly.Seems a rather odd, specific issue so im not entirely sure where in the chain this is occurring.
The text was updated successfully, but these errors were encountered: