a list that appears under an item when a user hover or clicks on it.
8
votes
3answers
800 views
Patterns for keyboard accessible drop down lists
Are there any standard keyboard shortcuts for making drop down lists appear? (in any kind of software, not just web based.)
I'm going to write some JavaScript to make the drop down lists (select and ...
2
votes
4answers
499 views
How to combine Suggestions with Filtering in a searchbox?
I got a textfield/combobox for typing a search string (or selecting a recent searchstring). The search results are presented in a list below the box.
I also got a textfield for filtering the list.
...
17
votes
6answers
1k views
When should I use a select box instead of radio buttons?
I know that a select box takes up less space and is good for lots of options. But should there be any deeper influences to my choice than space? Are there any studies that show users preferring one or ...
7
votes
5answers
2k views
A cross between a DropDownList and AutoComplete Text Box
I am trying to come up with an web interface that allows the addition of an item to a list. For simplicity I'll use an example of a list of names which, when selected will be assigned to a club/group. ...
6
votes
3answers
1k views
How to best display a long list of check boxes
In my application users are required to select from a drop down, a list of projects they wish to include in their custom search. The easy part is that users can select one project to filter on or ...
5
votes
2answers
1k views
Drop down list best practice/usability
We have a website with a large application containing several drop-down lists on several different pages of the app. They are not all the same - some are country selections, some are name, some are ...
4
votes
5answers
456 views
What is the maximum recommended number of item to put in a drop down list?
I am introducing searchable drop down lists to filter grid data. The number of items in a list could range from anything like ten to a ten thousand.
The larger the number of items, the more awkward ...
4
votes
3answers
783 views
Best choice for three-state value?
In my application, the user can filter fields by selecting one of three possible values for each field:
True
False
Both
I currently have a drop-down box, but this requires two clicks while the ...