Hi,
we have a quite similar problem:
http://groups.google.co.nz/group/gwt-google-apis/browse_thread/thread/34df3a509ac366b1/8043ad299cb52672?#8043ad299cb52672
although it refers to gwt-maps and IE7 we noticed some strange
disappearing facts (please note that we never set the visibility of
our widgets to false).
Someone can help us?

Vincenzo Caselli



On 28 Gen, 18:07, bk13 <[email protected]> wrote:
> Hello,
>
> I got a problem with a special combination of widgets and the IE
> (tested with IE6/IE7). It seems that it's an combination of 3 widgets:
> AbsolutePanel, ScrollPanel, ToggleButton. When you move the mouse over
> the ToggleButton the ScrollPanel disappers.
>
> My Code:
>
> public void onModuleLoad() {
>     /*PWPanel*/
>         Grid containerPWP = new Grid(1,1);
>         AbsolutePanel absPanel = new AbsolutePanel();
>         containerPWP.setWidget(0,0, absPanel);
>         VerticalPanel vp = new VerticalPanel();
>         absPanel.add(vp);
>
>         /*PW*/
>     Grid container = new Grid(2,1);
>     Grid header = new Grid(1,1);
>     PushButton pbtn = new PushButton();
>     header.setWidget(0, 0, pbtn);
>     container.setWidget(0, 0, header);
>
>     FlexTable body = new FlexTable();
>     ScrollPanel scrollPanel = new ScrollPanel();
>     Label text = new Label("The Text The Text The Text The Text The
> Text The Text The Text The Text The Text The Text The Text");
>     scrollPanel.setWidget(text);
>     scrollPanel.setWidth("50px");
>     scrollPanel.setHeight("50px");
>     body.setWidget(0, 0, scrollPanel);
>     container.setWidget(1, 0, body);
>
>     /*bring together*/
>     vp.add(container);
>     RootPanel.get().add(containerPWP);
>   }
>
> It seems that it's an problem with the position:relative style of the
> AbsolutePanel and the ScrollPanel. When I use an SimplePanel instead
> of the AbsolutePanel than it works fine. But thats not an solution for
> me cause I need an AbsolutePanel for the DragDrop lib.
>
> Did anyone got the same Problem? Is an Solution out there? Should I
> post it as a bug?
--~--~---------~--~----~------------~-------~--~----~
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