-
Notifications
You must be signed in to change notification settings - Fork 27.4k
<select> broken: model/view out of sync #7544
Comments
If I include Here's a fiddle: |
The problem (or maybe symptom) is that the change handler is not being called even though the value is changing. Using this patch (based on 1.2.16): diff --git a/src/ng/directive/select.js b/src/ng/directive/select.js
index 628d217..fe9b61a 100644
--- a/src/ng/directive/select.js
+++ b/src/ng/directive/select.js
@@ -342,7 +342,14 @@ var selectDirective = ['$compile', '$parse', function($compile, $parse) {
// clear contents, we'll add what's needed based on the model
selectElement.empty();
+ selectElement.on('keydown', function(ev) {
+ console.log('keydown', ev.keyCode, selectElement.val());
+ });
+ selectElement.on('keyup', function(ev) {
+ console.log('keyup', ev.keyCode, selectElement.val());
+ });
selectElement.on('change', function() {
+ console.log('change');
scope.$apply(function() {
var optionGroup,
collection = valuesFn(scope) || [], I see the following in the console when I type
So you can see that the val (as returned by |
I can confirm that this is an issue in Chrome. |
Ha, actually I was also looking at this one :-) From my playing with the issue it looks like the problem goes away if the Or maybe I'm just not clicking fast enough.... |
@pkozlowski-opensource The problem is still there even without the
Afaict, if you use the mouse to select things there is no problem. Edit: And I should re-point out that using |
In Firefox (29.0.1) it behaves differently (there's never a discrepancy between model and view) because the |
we should take a look at this after #6564 is fixed |
Created a plnkr from the original fiddle (easier for me): http://plnkr.co/edit/vu1buCX8Hb6ePQm2kDLF?p=preview I was able to see that the change event is firing in Chrome, so this seems like an issue in Angular. |
@jeffbcross I discussed this with @IgorMinar, have some ideas about the cause and an idea for the solution. Will take this from here... |
@jeffbcross, I don't think it's an issue with Angular, as it also happens without Angular: plunkr And yes, the This seems like a browser bug to me, but the question is: Should we account for that and make Angular not step into the bug, or should we wait for the bug to get fixed ? (/cc @tbosch ) |
yes sorry I was too hasty :) |
Closing as dupe of #9134 |
I'm seeing a
<select>
display one value but have a model with a different value. I think it has something to do with the initial "empty"<option>
when the model is null.Here's some minimal reproducing code (there's also a fiddle below):
To duplicate with the fiddle below:
<select>
he
http://jsfiddle.net/VRE2L/
I can duplicate this bug on 1.2.10 and 1.2.16 using Chrome (haven't tested other browsers)
The text was updated successfully, but these errors were encountered: