- style
Drop-down Menu
- 1 Description
- 2 Types
- 3 Usage & Behavior
- 3.1 General guidelines
- 3.1.1 Structure
- 3.1.2 Default State
- 3.1.3 Content
- 3.1.4 Internal Logic
- 3.2 States
- 3.3 Interaction
- 3.4 Searchable drop-down
- 3.4.1 Internal Logic
- 3.4.2 Interaction
- 3.5 Multi-select drop-down
- 3.5.1 Internal Logic
- 3.5.2 Interaction
- 3.6 Multi-select searchable drop-down
- 3.6.1 Interaction
- 3.7 Validations and errors
- 3.8 Best practices
- 3.1 General guidelines
- 4 Accessibility Compliance
- 4.1 Focus management
- 5 Design
- 6 Code
Description
A drop-down menu consists of related content grouped together and organized vertically.
It allows users to select one or multiple values from a list of predefined values. An optional search field can help the user to find values easily.
Types
Type | Usage | Image |
---|---|---|
Regular drop-down | When the user can only select one option from a predefined list. When there are fewer than 15 options. | |
Searchable drop-down | When there are more than 15 options. When users are expected to know what they are looking for, and are likely to be aware of how the option is labelled. | |
Multi-select drop-down | When the user can select multiple values from a predefined list | |
Multi-select searchable drop-down |
|
Usage & Behavior
General guidelines
Structure
The drop-down consists of:
Trigger area - selecting the drop-down trigger should open or close the options list. Includes:
a text area, with the currently-selected option(s) or default text.
a drop-down arrow.
Options list - displays the list of available values, consisting of:
Options - must include a text label, but can additionally have an icon. Keep the labels short, because the list uses single lines only.
In case selecting an option is not mandatory, a No selection item should appear at the top of the options list. This will allow users to avoid selection or deselect a previously selected option.
Selection indicator - a blue check mark should be shown to the left of the selected option.
Action icons (optional) - these add extra actions for each list option, and appear on user interaction.
Status icons (optional) - these add extra information for each list option and always appear.
Dividers or group headers may also be used to organise the options list.
Text labels only | |
Including a No selection option | |
With icons | |
With additional actions and group divider | |
With group headers |
Default State
The drop-down trigger area consists of a text box showing the default option, if one exists. For example:
If there is no default option:
Where a preceding label is being used, the default text will be Select.
Where there is no label, the default text will be Select a {NameOfEntity}. For example, Select a Job Title.
Content
When possible, a drop-down menu should have a preceding label. Labels inform the user about what is included in the options list.
Order the options list using one of these rules:
Logical. Sort options into a meaningful order. For example, group related options together, and order by the most common to least common.
Alphabetical. If there are more than 8 options available, sort them alphabetically. This helps the user to find the right option quickly. Sort currencies, names, and similar content alphabetically.
Numeric. Sort numeric values in a sequential order, with the lowest number first.
Chronological. Sort time-related information into chronological order, with the most recent first.
The width of the options list should adapt to the longest option, up to a maximum width. Where options are too long they should be truncated with a tooltip displaying the full text shown on hover.
Internal Logic
Users need to select one option exclusively from a short list (where the user can select multiple options, see Multi-select drop-down below).
There should be a minimum of 3 options.
The user may select an item either by using the mouse and clicking, or by using the Up and Down keys to navigate between options and Enter to select.
On selection of an option, the options list will close.
The selected option will be shown in the trigger area.
States
State | Visual |
|
---|---|---|
Regular |
| |
Hover |
| |
Active |
| |
Selected |
| |
Disabled |
| |
Read-Only |
| |
Error |
| |
Warning |
| |
Focused |
| |
Focused, Hover |
| |
Focused, Active |
| |
Focused, Disabled |
|
Interaction
Interaction | Visual | Details |
---|---|---|
Hovering anywhere on the trigger area |
| |
Clicking anywhere on the trigger area |
| |
Selecting an option |
| |
Viewing options list with an existing selection |
| |
Selecting a No selection option |
| |
Clicking anywhere outside the drop-down |
| |
Focusing or hovering on a list option when its row contains action and status icons |
| |
Focusing or hovering over an action or status icon |
|
|
Searchable drop-down
A Search field should be added:
to options lists with over 15 items.
when users are likely to know what they are looking for.
Internal Logic
The search field will be auto-focused when the options list opens, so that the user may start searching immediately.
The search field will operate as a Live Search.
The user may select an item either by using the mouse and clicking, or by using the Up and Down keys to navigate between options and Enter to select.
On selection, the options list will close.
The selected item will be presented in the trigger area.
The search field is cleared each time the options list is closed.
Interaction
Interaction | Visual | Details |
---|---|---|
Click the trigger area |
| |
Enter search |
|
|
Select an option | On selecting an option:
| |
View options list with an existing selection |
|
Multi-select drop-down
A multi-select drop-down allows users to easily select multiple values from a predefined list.
Internal Logic
Selected items
The selected values are presented in the trigger area as read-only.
2 or more items are presented one after the other, separated by a comma and a space.
When the selected values exceed the size of the trigger area, the labels will be replaced by the total number of selections, for example “5 selected“.
An option can be selected by clicking on the checkbox or the label.
When space is limited and/or the user is expected to select several items, a Select All option can be added.
Select All (optional)
The All option is a master type checkbox, which controls the state of all the other checkboxes in the list. See Checkbox for the full behaviour.
The All option should be presented at the top of the options list.
When all items are selected, the trigger area should show All instead of a number.
Use the All option when:
The user is expected to select all or most of the items.
The list is very long (so it will allow the user to easily clear all selections).
Interaction
Interaction | Visual | Details |
---|---|---|
Click the trigger area |
| |
Select an option |
| |
Multiple items selected |
| |
Click on the trigger area, or |
|
Multi-select searchable drop-down
Interaction
Interaction | Visual | Details |
---|---|---|
Click the trigger area |
| |
Enter Search |
| |
Select an option |
| |
Delete search string |
|
Validations and errors
Please refer to the Field Validation page for more information.
A drop-down with a warning:
A drop-down with an error:
Best practices
Use when:
The options list is small-medium in size.
Space is constrained.
Use the searchable type when:
there are more than 15 options.
when users are expected to know what they are looking for, and are likely to be aware of how the option is labelled.
Don’t use when:
The list has fewer than 3 options.
The list has fewer than 7 options and the user needs to see them all at once → use Radio Buttons or Checkboxes instead.
The user needs to enter a value which is not in the list → use a Combo Box instead.
The list is large → use Dual List Selector or List instead.
General:
Only show a scrollbar when the list has over 8 items.
Keep the text values as short as possible, because the list uses single lines only.
There is no horizontal scrolling in the option list.
The options list should adapt its length to the longest entry by default, but values which are too long may be truncated, with a tooltip displaying the full text (not recommended).
Place options that represent All or None at the beginning of the list, regardless of the sort order of the remaining items.
Do not allow the control to auto-adjust based on the selection.
If there’s no preceding label, or if the label is not indicative enough, the {NameOfEntity} should be added within the drop-down, after the number of selections. For example, 2 categories selected:
Accessibility Compliance
Unless otherwise specified, see our general compliance information in Fundamentals - Accessibility.
Focus management
If a search bar exists, it will be treated as the first item on the options list.
Keyboard | Trigger area | Options list |
---|---|---|
| ||
Tab | Navigates to the next component. |
|
Shift + Tab | Navigates to the previous component. |
|
Space | Opens the menu. |
|
Enter | Opens the menu. |
|
Esc | N/A | Closes the menu without updating the selection. |
Arrows | Up/Down - Opens the menu. |
Holding down the key will scroll continuously. |
Page Up/Home | N/A | Navigates to the first item. |
Page Down/End | N/A | Navigates to the last item. |
Design
Zeplin Link | Screen Thumbnail |
---|---|
Code