Hi,

I have a menubar with few menu items in it :-

public class menubar implements EntryPoint {
     public void onModuleLoad() {

    MenuBar fooMenu = new MenuBar(true);
    fooMenu.addItem("the1", cmd);
    fooMenu.addItem("foo", cmd);
    fooMenu.addItem("menu1", cmd);

    VerticalPanel panel = new VerticalPanel();
    panel.add(menu);
    RootPanel.get().add(panel);
  }
}

How do I handle onmouseover event for fooMenu ?

Thanks


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to