Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
191 views

Should menu items always be enabled? And how do you tell the user?

So one of the things that has been talked about a few times on the podcast is whether menu items should always be enabled to prevent "WHY ISN'T THIS AVAILABLE!" frustration for the end user. This ...
2
votes
2answers
141 views

How to detect mouse click on menuItem when added via addMouseListener

Consider you want to close your java application using "Close application" menu item. 3 possible solutions are (using ActionListener or MouseAdapter or MouseListener): ...
1
vote
6answers
4k views

How to dynamically change the color of the selected menu item of a web page?

I am new to developing web pages. I am looking to create menus similar to the ones in stackoverflow.com (like Questions, Tags, Users shown above). How do I change the color of the selected menu (for ...
0
votes
1answer
84 views

Using jQuery to re-arrange the order of list items, and st them back to default

I am building a responsive menu that scales dependent on screen size. i need to hide some li's and rearrange another when the screen size changes, then when the screen size is resized back to its ...
0
votes
2answers
168 views

Flex 4.5 align menu items center

I have searched the net, but all those tuts are for Flex 3. What is the approcach in Flex 4.5 to align the mx:MenuBar items in middle of the bar ? (usually they are on the far left side)
0
votes
2answers
67 views

I wants to launch an activity from the same Activity using menu items

How can i launch an activity from the same activity under some condition using menu items. Eg:- I have an activity, which could be launch in two conditions based on the value boolean variable 'flag'. ...
0
votes
1answer
1k views

MDI Parent Menu and Child Menu

I am using VB.Net on Winforms Development developing an MDI application. In my Parent form, I have a menu strip. In my child forms, I also have a menu strip attached to each form, which invokes a ...
0
votes
1answer
2k views

best way to generate and highlight menu items on server (asp.net)

I have an ascx component, that holds two-level menu, because there are several user types, and the menu needs to be computed on server. Anyways - I'm also doing the highlighting of current menu item ...