PDA

View Full Version : can menu be scrolled?



cabe
25 Mar 2009, 7:06 PM
I have many menuItems to be added into a menu,and I want the menu can be scrolled ,so it can be shorter.Is there a method to do this?

the menu in the following code is too long

public void onModuleLoad() {
Menu m=new Menu();
for(int i=1;i<40;i++){
MenuItem mi=new MenuItem("menuitem"+i);
m.add(mi);
}
Button bu=new Button("button");
bu.setMenu(m);
RootPanel.get().add(bu);
}