Combobox
Combobox pairs a filterable text input with a listbox for picking one or many options from a large set.
Declare options as ComboboxOption children, bind both display text and selected_options, and enable multiselect or clearable when the UX requires it. Use Select for short native lists and AutoComplete when free text is allowed.
- Searchable dropdowns with many options
- Multi-select tag-style pickers
- Forms where users type to narrow choices from a fixed set
- Bind typed text and selected values via
ComboboxBind— bothvalueandselected_options. - Add
ComboboxOptionor grouped options withComboboxOptionGroup. - Set
appearance.multiselectfor toggle-style multi pick.
Searchable single-select dropdown; typing filters the option list as users narrow choices.
Shows a clear icon when a value is selected so users can reset the field in one click.
Blocks typing, opening the list, and selection when the field is unavailable or read-only.
Toggle multiple options on and off; selected values stay in the bound list until cleared or toggled again.
Organizes long option lists under labeled sections so users can scan related choices faster.
Small, medium, and large presets for dense toolbars versus prominent form fields.