vote up 2 vote down star

I am having a sample Silverlight app that contains a combo box with thousands of values(~4000). The values are pulled from the web service and populated currently, which takes a lot of time and renders the UI unresponsive.

The use case: - A field in the UI needs to be populated by the user
- The field can have only certain predefined values(already present in the database)
- The values in the field cannot be grouped/categorized

What have you done or will do to:
- Make the UI more responsive when the values are getting populated in the combo box
- Populate the combo values as fast as possible

Thanks for reading!

UPDATE:

Great comments! Appreciated!

I have edited my post to present the use case.

The best alternative i could think of would be a Google auto-suggest-like textbox that suggests as i type-in.

flag

What is the use-case that requires 1000s of values in a combo box? It sounds like a combo box might not be the best solution, I suggest you re-think the design rather than optimize... – Ludvig A Norin Sep 23 at 17:23
There is something called USABILITY. Please get enlightened about this first. – TheVillageIdiot Sep 23 at 17:25
1  
This is a place to come ask questions, if you have the knowledge to help, help. Don't turn this into a place to shout RTFM. – Nick Sep 23 at 17:34
/me Shutters @ 4000 values in a combo box – Tnay Sep 23 at 17:36
@Tnay - Are you "shuttering" or "shuddering"?? :P – Chris Dunaway Sep 23 at 21:28

3 Answers

vote up 7 vote down check

Think about using popups to do a modal search to select the item the person wants. Let them enter some search criteria and show the results in a listbox which should hopefully be a more reasonable number.

Scrolling through 4000 items in ridiculous and the thumb on the scrollbar would be so touchy, it's basically useless.

You're making them search through thousands of items, let them actually SEARCH for it then in a dialog.

link|flag
1  
+1 First actual answer! – mattruma Sep 23 at 17:33
@Nick: Good suggestion. Instead of a popup dialog though, would go for a text box that auto-suggests as you type in(like the Google search box). – pencilslate Sep 23 at 19:46
You know your problem better than I do, but yeah, it all depends on how they are going to be looking for the item they want. If it's just by name, autocomplete is awesome. If they may want some other criteria other than name, a search dialog might be better. – Nick Sep 23 at 20:55
vote up 10 vote down

I would avoid the entire situation in the first place -

I personally detest combo boxes with more than about 20 elements. At some point, choose a better user interface.

A combo box with 4000 elements makes for a horrific user experience. Redesign this to make it simpler for the user to find what they are looking for.

link|flag
I would vote this up more but it only let's me do it once. – csharptest.net Sep 23 at 17:24
hehe we posted basically the same exact thing..except you beat me to it :( – Stan R. Sep 23 at 17:24
Agreed. A combo box sounds like the wrong interface for choosing between thousands of options. – eking Sep 23 at 17:24
I don't like combo boxes for more then about 10 items, other wise it's just too much searching. Think about a search dialog for them to find what they need. – Nick Sep 23 at 17:30
@Nick: Yeah, I really do agree. After 5-6 items, I'd go for a different type, in most cases. However, after about 20, I get really turned off... at some point, it's just obnoxious. – Reed Copsey Sep 23 at 17:53
show 1 more comment
vote up 4 vote down

Well, personally I dont think a ComboBox with 4000 values is very user friendly, imagine selecting something from 4000 options...

Usually when i have large data like this I use paging.

link|flag
Reminds me of the old joke: "I told the doctor 'It hurts when I do this. What can I do?' He replied, 'Stop doing that.'" – eking Sep 23 at 17:26
thanks, i laughed out loud on that one..haha – Stan R. Sep 23 at 17:29
Paging isn't necessarily useful when looking for a specific option. If he's using a combobox for it's intended purpose, to select something, having to page through thousands of items isn't much better. – Nick Sep 23 at 17:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.