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 value with SelectBind (typically RwSignal<String>).
  • Provide native <option> children with explicit value attributes.
  • Wrap in Field when a visible label is required.
Basic dropdown

Native <select> for choosing one option from a short fixed list. Same API as Select.

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.