Re: opening popup menu hides all remaining page content

2010-06-16 Thread Magnus
Hi,

what does this mean: Fixed in 2.1M1?

When will this fix be available to all?

Thanks
Magnus

On 11 Jun., 15:09, Thomas Broyer t.bro...@gmail.com wrote:
 On 11 juin, 07:07, Magnus alpineblas...@googlemail.com wrote:

  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.

 Seehttp://code.google.com/p/google-web-toolkit/issues/detail?id=4532
 Fixed in 2.1M1 if you want to try it out.

-- 
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-tool...@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.



Re: opening popup menu hides all remaining page content

2010-06-16 Thread Jaroslav Záruba
http://code.google.com/webtoolkit/download_2_1_m1.html

http://code.google.com/webtoolkit/download_2_1_m1.htmlcheers
  JZ

On Wed, Jun 16, 2010 at 3:43 PM, Magnus alpineblas...@googlemail.comwrote:

 Hi,

 what does this mean: Fixed in 2.1M1?

 When will this fix be available to all?

 Thanks
 Magnus

 On 11 Jun., 15:09, Thomas Broyer t.bro...@gmail.com wrote:
  On 11 juin, 07:07, Magnus alpineblas...@googlemail.com wrote:
 
   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.
 
  Seehttp://code.google.com/p/google-web-toolkit/issues/detail?id=4532
  Fixed in 2.1M1 if you want to try it out.

 --
 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-tool...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.



-- 
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-tool...@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.



Re: opening popup menu hides all remaining page content

2010-06-11 Thread Thomas Broyer


On 11 juin, 07:07, Magnus alpineblas...@googlemail.com wrote:
 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.

See http://code.google.com/p/google-web-toolkit/issues/detail?id=4532
Fixed in 2.1M1 if you want to try it out.

-- 
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-tool...@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.



opening popup menu hides all remaining page content

2010-06-10 Thread Magnus
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 google-web-tool...@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.