Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Model value not properly updating on select list with ngModel and blank default option #4316

Closed
chalisegrogan opened this issue Oct 7, 2013 · 9 comments

Comments

@chalisegrogan
Copy link

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

@petebacondarwin
Copy link
Contributor

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:

  • Tab onto select - Selected index: 0
  • Press down onto "Human": Selected index: 1 (change is fired)
  • Angular removes unknown element: Selected index: 1 but really the selected item is at index 0 (change is not fired
  • Press down onto "Cat" - Selected index: 1 (change is not fired)
  • Press down onto "Shark" - Selected index: 2 (change is fired)

@petebacondarwin
Copy link
Contributor

I wonder if we should just "hide" the unknown option rather than removing it?

tmacdonald added a commit to tmacdonald/foos that referenced this issue Dec 25, 2013
@gusreiber
Copy link

I am having the same issue. Is there a prefered work-around?

@chalisegrogan
Copy link
Author

@gusreiber I've been working around this by throwing in an additional option with style="display:none" (Plunker with example here: http://plnkr.co/edit/AX3ziM9wdSoSeLzk9ZBh?p=preview)

@gusreiber
Copy link

@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.

@chalisegrogan
Copy link
Author

@gusreiber - I believe this (http://plnkr.co/edit/gYpCMsSTdLBDkxulXu5x?p=preview) should work for you..?

@gusreiber
Copy link

Ah. Perfect. ...what you said the first time, really.
I did not realize you could use both ng-options and tags.
That will get me fixed.

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.

@chalisegrogan
Copy link
Author

@gusreiber agreed, I've been meaning to get in a PR for it myself but just keep getting sidetracked. Glad I could help!

@Narretz
Copy link
Contributor

Narretz commented Sep 22, 2015

Duplicate of #9134

@Narretz Narretz closed this as completed Sep 22, 2015
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

5 participants