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.

Listbox multiple selection

See original GitHub issue

It 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:closed
  • Created 3 years ago
  • Reactions:12
  • Comments:7

github_iconTop GitHub Comments

8reactions
RobinMalfaitcommented, Oct 6, 2020

Hey! Thank you for your feature request! Currently that’s not possible but it will be in a future version!

5reactions
ditschedevcommented, Dec 17, 2020

+1 on this one, would be great!

Read more comments on GitHub >

github_iconTop 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 >

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