I need to create a dropdown, which can contain 100s of options.
I need a scrollbar to appear and be consistent across all browsers.
Google came up empty: Is there a good URL that describes if this is consistent or not?
Thanks.
|
|
I need to create a dropdown, which can contain 100s of options. I need a scrollbar to appear and be consistent across all browsers. Google came up empty: Is there a good URL that describes if this is consistent or not? Thanks.
|
||||||
|
|
|
I would strongly recommend against having a scrollable select with 100s of options for usability reasons. With exception of one corner case, navigating (both searching in, and selecting from) that list is a really really hard and very annoying to the user. The UI design reasoning is that it requires:
[ the corner case is when all the option names are uniformly distributed across the alphabet (as far as the first letter), which allows somewhat-possible keyboard-only navigation in the drop-down via pressing the first letter of an option ]. A proper UI solution is to have a select whose contents are dynamically populated based on a search field - either typed text (think Google's new search box, or browser's address bar) or sometimes checkboxes/radio buttons. BTW, sub-menu solutions also suck for mouse navigation - minor twitch of the wrist and you lost all of the pointing work. I apologize that this answer is not an answer to "how do you solve my technical problem", but I am of a very strong opinin that you're solving the wrong problem in the first place. HTH. |
||||
|
|
|
The short answer is no, for the standard HTML However, do you know you can set the
There is also the possiblity of If you have many categories you could do what I did on one site and use this jQuery click menu, using the click function to set a hidden field. So now I have a dropdown with sub-categories and it's quite easy to find the right option. |
||
|
|