-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Model value not properly updating on select list with ngModel and blank default option #4316
Comments
The problem is that because we have removed the first "unknown" holding element, the select element does not fire the "change" event when you move down one more, since I guess, internally the selected index has not changed:
|
I wonder if we should just "hide" the unknown option rather than removing it? |
I am having the same issue. Is there a prefered work-around? |
@gusreiber I've been working around this by throwing in an additional option with |
@chalisegrogan Wow, thanks for the quick reply, Chalise. So I am actually trying to use ng-options in my select list, specifically, "opt.id as opt.label for opt in data.valuesEnum". When my initial value is undefined, the first change from null to data.valuesEnum[0] my model updates and ng-change fires and all is good. When I change from the first option to the second, the model does not update and no ng-change event fires. After that, everything works as expected. |
@gusreiber - I believe this (http://plnkr.co/edit/gYpCMsSTdLBDkxulXu5x?p=preview) should work for you..? |
Ah. Perfect. ...what you said the first time, really. This seems like a fairly significant bug in the select directive to me, but your initial post is over 6 months old. No one is banging down the door looking for a real fix? ...anyway, thx again. |
@gusreiber agreed, I've been meaning to get in a PR for it myself but just keep getting sidetracked. Glad I could help! |
Duplicate of #9134 |
When tabbing into a select list with ng-model directive and a blank default option, the model value does not get properly updated when using arrow key to select the second option in the list. This only seems to happen on the second arrow key press after tabbing into the select list. The model is first updated on the initial selection but not on the second.
A Plunker with the repro steps and showing the issue in action is here: http://plnkr.co/edit/8bIbeUmdZfJ95lA5ssbE?p=preview
The text was updated successfully, but these errors were encountered: