@luka I recommend you take a look at the Quasar Select component, which is made for Vue.js v3. It’s worth it, and all other components as well.
Arturo
@luka I recommend you take a look at the Quasar Select component, which is made for Vue.js v3. It’s worth it, and all other components as well.
Arturo
When using the select and/or multi-select an an input in a repeating item, it would make things so much easier if that variable/value is exposed. Right now, we have to do a large workaround of creating additional variables and workflows to keep track of it, which doesn’t always work out.
Popping back in here because I realized another thing it lacks - infinite scroll with Xano back-end pagination for the dropdown options ![]()
Long time ago, just seen the topic. I advocate to have an “active” state if user put the cursor inside an input box to be able to style it similar to other inputs.
@andrea, in the meantime, below is some CSS that you can start to play with to control some of that styling. Let me know if you have any questions about it. See screenshot for output.

<style>
.multiselect-dropdown {
border-radius: var(--ms-dropdown-radius, 8px) var(--ms-dropdown-radius, 8px) !important;
bottom: -4px !important;
max-width: fit-content !important;
width: fit-content !important;
overflow-y: scroll !important;
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1)
}
/* For browsers that support `scrollbar-*` properties */
@supports (scrollbar-color: auto) {
.multiselect-dropdown {
scrollbar-color: #ccc transparent;
}
}
/* Otherwise, use `::-webkit-scrollbar-*` pseudo-elements */
@supports selector(::-webkit-scrollbar) {
.multiselect-dropdown::-webkit-scrollbar {
background: #ccc;
}
.multiselect-dropdown::-webkit-scrollbar-thumb {
background: transparent;
}
}
</style>