Skip to content

ListBox

ListBox displays options in a list box where users can select multiple options by holding Ctrl (Command on Mac).

ListBox settings

ListBox control

Specific Settings

List Collection

One option per line:

HTML
CSS
JavaScript
Photoshop
Illustrator

Default Value

One or more pre-selected options. Separate multiple values with commas; all must exist in List Collection:

HTML,CSS

Width / Rows

  • Width: the list box width.
  • Rows: the list box height in rows — more rows show more options at once.

Mandatory Validation

Check Required so at least one option must be selected.

ListBox vs CheckBoxList

AspectListBoxCheckBoxList
PresentationNative list boxGroup of checkboxes
Multi-selectHold Ctrl — not intuitive for average usersSimply click to check
FootprintHeight controllable (Rows)Grows with option count

Recommendation

For public-facing forms, prefer CheckBoxList for a more intuitive multi-select; ListBox fits cases with many options and limited space.

Next Steps

Built with VitePress