Listbox multiple selection
See original GitHub issueIt would be great to allow the Listbox to select more than one option by passing “multiple” Boolean prop
Example:
<Listbox v-model="selectedPerson" multiple>
<ListboxButton>{{ selectedPerson.name }}</ListboxButton>
<ListboxOptions>
<ListboxOption v-for="person in people" :key="person.id" :value="person" :disabled="person.unavailable">
{{ person.name }}
</ListboxOption>
</ListboxOptions>
</Listbox>
Issue Analytics
- State:
- Created 3 years ago
- Reactions:12
- Comments:7
Top Results From Across the Web
Insert a multiple-selection list box - Microsoft Support
A multiple-selection list box is list of choices that looks like a scrollable list of check boxes instead of a typical list box....
Read more >Multiple Selections in a ListBox - TeachExcel.com
Change the MultiSelect property for the ListBox. Go to the VBA window (Alt + F11) > open the form by double-clicking it in...
Read more >Multi Select List Box - vb.net - Stack Overflow
My listbox contains a list of item sizes, i want to select the sizes which belong to the item being edited. PLease can...
Read more >Multiple List Box Selections in Excel VBA (Easy Macros)
The MultiSelect property in Excel VBA allows a user to select multiple items in a list box.
Read more >VBA MultiSelect Property of ListBox Explained with Examples
VBA MultiSelect Property of ListBox ActiveX Control in Excel to sets an integer value (0 or 1 or 2). It specifies how text...
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 Free
Top 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
Hey! Thank you for your feature request! Currently that’s not possible but it will be in a future version!
+1 on this one, would be great!