Select list
Body
Use when
- Number of options is 7 or more;
- Layout space is limited.
Example collapsed Select list

Example open Select list

Recommendations
- Use radio buttons when the number of options is less than 7.
- For long lists with predictable content, autocomplete textfield should be considered.
- Try to limit the length of the list where possible, 5 to 15 items is a usable maximum.
- Multiple option select lists (using the
#multipleproperty) are discouraged – use radio buttons or checkboxes where possible.- Many users don't know how to select multiple items in a select list. (It involves holding the Control key while clicking each option.)
- There is an accessibility bug with Blink-based browsers (Chrome, Opera) which prevents users from selecting multiple options that are not next to each other.
API
The problem this solves
The user should select one option from a pre-defined set of options (number of o
Knowledge Category