question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Feature Request] Expose select event of VSelectList inside VComboBox

See original GitHub issue

Problem to solve

Currently we can only listen change and input events of VComboBox which will be triggered when user select a menu item or click somewhere else on the page. (when input lose focus) The feature expose the select event of VSelectList which can be only triggered when user clicked on the dropdown menu.

Proposed solution

Add select event to VComboBox

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
PeratXcommented, Jul 20, 2020

I have figure this out


                            setTimeout(() => {
                                if (this.$refs.pnInput.$refs.menu.$children.length > 0) {
                                    let list = this.$refs.pnInput.$refs.menu.$children[0].$children[0]
                                    list.$on("select", e => {
                                        this.box = e.value
                                        this.partNumber = this.box
                                        this.query()
                                    })
                                }
                            }, 100)
0reactions
johnleidercommented, Dec 1, 2020

Thank you for the Feature Request and interest in improving Vuetify. After careful consideration the team has decided that this is not functionality that we are looking to implement at this time.

If you have any additional questions, please reach out to us in our Discord community.

Read more comments on GitHub >

github_iconTop Results From Across the Web

[Feature Request] v-combobox prop to clear input on select of ...
I tried making a scoped item for the selectable checkboxes, which worked, and putting a clicked event on them, and that's when I...
Read more >
jQuery combobox , how to trigger the select event
Hi i am using jquery combo-box for my codeigniter application ,. there are 3 comboboxes . when country value changes , the state...
Read more >
Another Ultra Combo error?... | Infragistics Forums
According to MSDN documentation for the SelectionChangeCommitted event, it "Occurs when the selected item has changed and that change is ...
Read more >
Dropdown Select - OutSystems 11 Documentation
The Dropdown Select is a pattern that you can apply to other patterns to implement a search functionality or multiple selection in lists....
Read more >
Bind Select DropDown List in Angular 8 - Talking Dotnet
In this post, we'll see how to bind select dropdown list in Angular 8 app by extending the same app.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found