Table of Contents |
---|
Description
Lists are continuous, vertical indexes of text and images.
They are composed of items containing primary and in some cases supplemental information, which can be shown as text, icons, or images.
The component may be part of a page layout or in a Popover. They also often appear as a sub-component within a larger element, such as a Drop-down Menu, Drag and Drop, or Combo Box.
Types
Type | Image | Usage |
Simple list | The most common list is a flat collection of objects. | |
Check box list | A list where the user can select multiple options. | |
A hierarchical list with expanding and collapsing nodes which contain nested items. See the Tree page. |
...
General guidelines
Structure
List items must have
...
a label, with the main object name. If the entire name does not fit, it can be truncated and a Tooltip can be used on hover.
List items can optionally also have:a
A leading icon. These should only be used if the list can contain several types of
objects. If all items are of the same type, an icon should not be used.
A leading image.
Up to 2 secondary lines of text. Secondary lines cannot have their own leading icons or images.
Extra metadata, such as a tag, text, or an icon. These should be positioned to the right of the item, centered vertically.
Up to 2 action icons, such as delete. These should only appear on hover or when an item is selected. They should be positioned to the right of the item, centered vertically (replacing the extra metadata, if exists).
Single-line list | Two-line list | Three-line list | |
---|---|---|---|
Full list | |||
Single Item | |||
Single item with icon / image | |||
Single item with multi select |
Lists can also have:a
A preceding label at the top of the list, to inform the user about the items included in the list.
A Search field on long lists, allowing users to find items easily.
Internal Logic
Lists should be ordered in logical ways that make the content easy to scan. Order the list using one of these rules:
...
Interaction | Screenshot | |
---|---|---|
Single Selection |
| |
Multi-select check boxes |
| |
Smart Selection |
When relevant, an Apply button will appear, allowing the user to apply the selected items. |
When scrolling, the title and Search bar should stick to the top and remain visible.
...