[Bug Report] v-combobox emits `change` event too late
See original GitHub issueVersions and Environment
Vuetify: 1.2.5 Vue: 2.5.17 Browsers: Chromium 69.0.3497.81 OS: Ubuntu undefined
Steps to reproduce
- Enter “bar”
- Click “Submit”
Expected Behavior
Console output:
"change" "bar"
"submit" "bar"
Actual Behavior
Console output:
"submit" null
"change" "bar"
"change" "bar"
Reproduction Link
https://codepen.io/downace/pen/wYKzXw?editors=1011
Other comments
With v-text-field
all works as expected
Also, change
event is emitted twice
Issue Analytics
- State:
- Created 5 years ago
- Reactions:3
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Solved: Problems with ComboBox.OnChange triggering too oft...
It appears that the ComboBox.OnChange event gets triggered with a "weird timing" and more often than, say, TextInput.OnChange.
Read more >Access VBA - Trigger combobox change event - Stack Overflow
Problem is that when I navigate through record via Combobox, click second Option button for another view AND THEN RETURN to same view,...
Read more >21619 – Programmatically dropdown a combo - Bugs - Eclipse
setListVisible() Here's a test case. I'm going to modify the patch a bit because currently it shows the popup regardless of the state...
Read more >AJAX onChange event doesn't trigger in Form fields of Select ...
My problem is you have to update Onchange RANK-SUPERVISOR field, but can not get on-screen tab CLINETES vueva I attempt to show the...
Read more >352527 - Autofill should trigger a change event on inputs
What is the expected behavior? The change event should be triggered initially when autofilled so that code that is listening for value changes...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This workaround seems to work. I look forward to a fix though. Thanks!
Workaround: https://codepen.io/anon/pen/YRQawa?editors=1011