Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for alternatives or improvements to drop down lists/menus on websites

Drop-down lists, menus and combo boxes are all very common user interface elements. Users are accustomed to seeing these elements in native applications and sometimes web apps, but there are a few problems with them.

  1. You have to aim the mouse. Some menus collapse when you mouse out, and some have submenus that you have to aim at to expand.

  2. You can't see the options without aiming the mouse first.

These are the main things that trouble me, maybe other people notice other issues as well. I normally don't use drop-down menus at all if I can help it.

The problem is that I sometimes want to present a long list of options in limited space. Issue 2 is a sacrifice I'm willing to make, but I'm wanting to know if anyone has any tricks to make these drop menus easier to use. Maybe someone has invented a new style of list control.

I'm sure that if these types of controls annoy me, then they annoy users of my site more.

like image 513
Mnebuerquo Avatar asked Sep 06 '25 14:09

Mnebuerquo


1 Answers

Hmm..one more thing which annoys me about the dropdown list is the inability to control their width as it expands with the text (or is their something which I am unaware of ?).

For an alternate, I think about a little popup which initially displays a list of available options in form of Alphabetic index and when the user clicks on an alphabet link, it displays the relevant options to select from. This will reduce the options to select from.

On the same terms, we can use ajax to build the options on the fly as user types in.

like image 189
Nrj Avatar answered Sep 10 '25 13:09

Nrj