Hello,
I found a strange problem under IE 7:
When I click on a menu item that opens a popup submenu, the whole page
content (all widgets including the menubar itself) is hidden and only
the popup menu is visible.
I reduced the code to a minimum example and added it at the end of
this posting. There is no other code and no CSS, just the empty
project created with the eclipse plugin.
Since there is nothing special in this code, I assume that this
problem must be known to others.
Thank you
Magnus
-----
package test.client;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.dom.client.Style.Unit;
import com.google.gwt.user.client.*;
import com.google.gwt.user.client.ui.*;
public class LayoutTest_1 implements EntryPoint
{
public void onModuleLoad()
{
MenuBar menu = new MenuBar();
MenuBar m= new MenuBar (true);
m.addItem ("Login", (Command)null);
m.addItem ("Logout",(Command)null);
m.addItem ("Register",(Command)null);
m.addItem ("Profile",(Command)null);
menu.addItem ("Account",m);
DockLayoutPanel dock = new DockLayoutPanel(Unit.PX);
dock.addNorth(menu, 28);
RootLayoutPanel.get().add(dock);
}
}
--
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.