1

I currently have a drop-down where a filter is selected to be applied to a table. We would like that filter to have a few options on how it should be applied, so we have created a button next to the dropdown.

The design looks like this:

------------------  -----------
| Filter       v |  | Options |
------------------  -----------

However, we are limited on space and don't want to put much text in the button. Thus, we are debating between two implementations.

------------------  ------
| Filter       v |  | >> |
------------------  ------

------------------  -------
| Filter       v |  | ... |
------------------  -------

I believe that using the ellipsis (...) has a precedent in applications, but cannot find an example.

Is there a standard which should be applied here?

Dan Grahn
  • 9,044
  • 4
  • 37
  • 74

1 Answers1

2

The ellipsis generally means "I'm going to ask for more details", so file/open will have an ellipsis next to the command button to indicate that the app will pop up a dialog to ask which file you want opened.

This standard was set by Microsoft in their style guide, so its pretty much universal in Windows apps.

The >> tends to mean "and more options are available", so you have a button that you can click to expand the set of options to list less-used, or advanced choices.

The difference is that ... means "choose and I'll ask for more info", >> means "choose more".

Given your use-case I'd probably go with the >>.

Ah - see this answer for some canonical documentation.

Community
  • 1
  • 1
gbjbaanb
  • 51,617
  • 12
  • 104
  • 148