-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Select Value Does not update when typing a second char #6652
Comments
There are a few problems with this:
I've fixed it up for you at http://jsfiddle.net/cLRds/. Questions like this are much better suited for the irc channel, mailing list or stackoverflow, though. |
Thanks for replying. On (2), you misunderstand the purpose of the input element in my example. I don't care about its value - I care about being able to tab over into the select box, and it's the value of the select box that I care about. Anyway, the same issue that I point out in my original post/fiddle happens in your fiddle as well:
And this wasn't a question, it was a bug report :). |
@MissingHandle oh, I see what you're saying, that was not explained very clearly at all. So, if the browser is emitting events for those, then we can fix this, but if not, there isn't much we can do about it. I'll reopen for now, though. |
Thanks. I updated the fiddle with extra documentation: |
Worth fixing, don't you think? @caitp ? |
this is the same as #9134 |
When I focus on a text field, then tab over to a select field, then type the value of a valid option which starts with the same letter as another option that comes alphabetically first, I expect that angular will record the value of the option i typed, and which is also displayed in the UI. Instead, the angular value is the non-typed option which comes first alphabetically.
Fiddle: http://jsfiddle.net/Missinghandle/vFX9n/
Select the text box
Tab
type "i", "l"
UI shows IL
select value is ID
The text was updated successfully, but these errors were encountered: