vote up 1 vote down star

Does anyone know how many options a drop down list can have? Is it unlimited? How many before performance degrades?

flag

80% accept rate

4 Answers

vote up 5 vote down check

Does anyone know how many options a drop down list can have? Is it unlimited?

I imagine it is unlimited in theory, obviously not in practice as a computer's RAM and the specific browser's limitations come into play.

How many before performance degrades?

Again, this would depend on a few factors, at the least the specific browser, the computer's memory and processing power.


EDIT: From experience, I have had drop down lists with thousands of options. It wasn't ideal though because who wants to scroll through all of those? This is why an auto-complete of some type is more desirable for numerous reasons, especially the end user's experience.

link|flag
vote up 2 vote down

I've used right around 500 in a list with no noticeable performance impact if that helps!

link|flag
vote up 1 vote down

In my experience the performance degradation is generally on the side of the user, my golden rule (learned somewhere) is seven options, give or take a few.

On a more SW related basis, probably the top range of Integer.

EDIT: BTW This is kind of relevant from Atwood

link|flag
vote up 0 vote down

@JasonBunting - AutoComplete is probably the way to go, most definitely. I'll have to take the time to implement it. Drop Down initially is much easier to implement in the system I'm working with.

@stjohnroe - I suppose there is an integer limit, based on the thought that the browsers are likely using standard types to determine the size of the controls. Interesting thoughts. I'd accept you if we had more than one accept capabilities, especially for the link to Atwood (he has some good advice).

link|flag

Your Answer

Get an OpenID
or

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