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
-~----------~----~----~----~------~----~------~--~---