A combo box is a combination of a list box and a text box.

learn more… | top users | synonyms

6
votes
1answer
78 views

Name for a combo box that shows and edits multiple items?

Is there an accepted name for a UI element that allows the user to enter multiple values, displaying each value as visually distinct, and provides autocomplete matching like a combo box? Examples ...
13
votes
4answers
274 views

Adding “Select…” as first option (placeholder) of dropdown list

Would it be considered a good practice to add the word "Select..." as the first option of a dropdown list? I think it's redundant and not at all necessary and what is in the dropdown list should be ...
3
votes
6answers
136 views

When to combine comboboxes?

Let's say that my GUI has two fields to configure: input and output. Both fields are implemented with comboboxes that may have the following values: Input Values: A, B, C, D, E, F Output Values: 1, ...
6
votes
2answers
93 views

Group of controls depending on value of combo box

In a UI, I get the user to make a selection from a combo box. This selection influences what other controls will need to be shown. There are also other controls that need to be shown, independently of ...
5
votes
4answers
251 views

Where did combo box/drop-down lists come from?

Where did the design of combo box or drop-down lists come from? Radio buttons can be used similarly, and also have a real-world analogy without computers (those fill-circle-with-HB-pencil papers). A ...
1
vote
2answers
109 views

When should a select be replaced with a combobox?

I'm working with a site that is currently making heavy use of comboboxes. In fact, every select in the whole application is automatically turned into a combobox on page load. My first inclination is ...
6
votes
3answers
164 views

displaying cascading comboboxes

I have a text editor with several tools on a page. and I want to add cascading dropdowns to the tool list. For example, I have two comboboxes: 1st is filter with values: All -selected by default ...
3
votes
3answers
154 views

Should the currently selected item in a combo/dropdown box also be included in the list of choices?

For example, you have a combo box which contains 10 elements including the one that is currently selected. When you prompt to drop down the list to choose another, should the currently selected item ...
1
vote
1answer
162 views

Is a multiselect (with a few exposed options) always better than a drop down menu?

Consider the two inputs below: Ignoring the poor label placement for a moment... It seems to me that in many cases, either of these inputs could perform the same function. Do either of these ...
13
votes
4answers
642 views

Results of combobox selection

Combo box is relatively easy to pick items from, but is less usable when it comes to see what you have already selected. Any recommendation on how to display results of the combo box selection? The ...
4
votes
7answers
416 views

What's the optimal height for a dropdown/combobox?

I found this question, and while listboxes are cousins of the dropdown box, I think there are unique properties of combo boxes which require a seperate question. I am working with a javascript ...
5
votes
3answers
221 views

In a ComboBox containing years, should I sort them in ascending or descending order?

My guess is descending, but I want to have some theoretical background. I was using an application and my intuition told me to click the scroll bar down just to find previous years, and I felt ...
1
vote
2answers
82 views

Which input layout for choosing between Option1, Option2 and (Option1 or Option2, dynamically)

One setting in our app has to be as follows: For a certain scenario, the user select whether he wants: Always use option X Or always use option Y Or, depending on a dynamic flag, use X or Y (he ...
2
votes
4answers
217 views

Disable combobox with one entry?

Imagine an arbitrary list of items. To execute a command, the user has to select one of these items in a combobox (if there are no items, the combobox is not shown at all). Should the combobox be ...
4
votes
4answers
283 views

How to Indicate ComboBox Value Is Dirty

I'm looking for a good way to indicate the value of a ComboBox is dirty. With TextBoxes I set the Background to yellow but that looks a little funny with the ComboBox because by default it looks ...
2
votes
3answers
227 views

What ways can I present an addtional field to combobox when user can't find item they looking for?

I have ComboBox and it has item inside user can select item they want, if they can't find item they can select first item (Not in this list) and input data in textbox (textbox will show if user select ...
3
votes
3answers
338 views

Repeated Combo box for data entry or single list?

I have a desktop app form with a repeater control. It is a list of bank transactions that do a poor job of identifying the associated customer. Someone needs to assign the customer to each ...
5
votes
3answers
648 views

When would I use Facebook style fcbkcomplete instead of a multiselect dropdown?

Is there any occasion when you should use the Facebook style multiselect textbox (as seen in fcbkcomplete or smarttextbox) compared to a regular multiselect dropdown / list box or a set of checkboxes? ...
4
votes
1answer
229 views

Guidelines for representing sentinel values within a list

I'm curious if anybody can point me to a list of guidelines (preferable regarding Windows Development UI design) that may help layout rules which to follow when representing sentinel or special values ...
4
votes
2answers
3k views

Best ways to replace the combobox selection (aka single select) for touch interfaces.

The combobox has two benefits: a) fits in limited realestate and b) signals single selection to the user. What are the best alternatives for touch screens which minimize interacts? Combobox demands ...