Options to make changes within the dropdown #1323
-
Is your feature request related to a problem? Please describe. So the scenario would be the user types ahead - gets a filtered list but the person can also check off one by by the list. Describe the solution you'd like Describe alternatives you've considered Additional context |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can create this by using option-slot and creating your own markup for the options in the dropdown. However, there are currently some limitations with the focusing part of vue-select, probably making this idea not work. You can read more about a related issue here: #1316 "long" story-short: vue-select listenes for blur event on its component and closes the select before you can trigger an input in your own checkbox. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the thorough response @kamerat! This is a limitation of the current focus system and will have to be addressed in the next major. Unfortunately there's no great solution at the moment. |
Beta Was this translation helpful? Give feedback.
You can create this by using option-slot and creating your own markup for the options in the dropdown.
However, there are currently some limitations with the focusing part of vue-select, probably making this idea not work. You can read more about a related issue here: #1316
"long" story-short: vue-select listenes for blur event on its component and closes the select before you can trigger an input in your own checkbox.