Dropdown
Styled native <select> backed by Select.
Dropdown is Orbital's product name for a styled native <select> — it forwards every prop to Select and requires <option> children. It is not a custom listbox trigger. Use Dropdown for short fixed lists and native form posts. Use Combobox when you need type-ahead search, multiselect, or a custom listbox trigger. See Select for full API documentation.
- Short fixed option lists in forms and settings panels
- Native form posts where
<select>semantics are required - Product copy that says "dropdown" rather than "select"
- Bind
valuewithSelectBind(typicallyRwSignal<String>). - Provide native
<option>children with explicitvalueattributes. - Wrap in Field when a visible label is required.
Disabled
Shows the current selection but prevents changes while saving or when the choice is locked.
In Field
Field supplies the visible label and id association; Dropdown holds the options and two-way value.