We're building a GWT project with a menu built out of a vertical-
aligned MenuBar nested inside a horizontal-aligned MenuBar (to get a
popup menu).  We're hitting two things that annoy the design team:

1) Menu opening: we have auto-open = true for both the nested and the
parent MenuBar objects:
    MenuBar mainMenu;
    MenuBar nested;
    MenuItem reserves;
    reserves = new MenuItem("Course Reserves", reservesCommand);
    nested = new MenuBar(true);
    nested.addItem(reserves);
    nested.setAutoOpen(true);
    mainMenu = new MenuBar(false);
    mainMenu.addItem("Select", nested);
    mainMenu.setAutoOpen(true);
Nevertheless, the menu does not open until the mouse is over the
"Selected" label; the design/usability folks really want the menu to
open when the mouse is over any part of the menu bar.  Can this be
coded/set?

2) Once open, the menu does not close until the mouse is clicked
outside the popup menu.  The usability folks _really_ want the menu to
auto-close on mouse out.  I know there's no auto-close setting; does
anyone have code to approximate an auto close?  And any ideas when
Google might add autoclose functionality?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to