I doubt it is considered a showstopper. No-one took any notice when I
mentioned it for 1.5 and 1.6.0, but it severely limits what I would like to
be able to do.
There are a number of widgets which cannot be used anywhere inside
DisclosurePanels and StackPanels and probably other things.
For example: add a SplitPanel to a DisclosurePanel and in IE the split is
set at 0 but can be moved, in FF/Safari/Chrome and, I think, Opera, it is at
0 and cannot be moved
There are a number of other combinations like this. Here's some example
code:
public class Main implements EntryPoint
{
public void onModuleLoad()
{
DisclosurePanel d = new DisclosurePanel("Click To Open");
RootPanel.get().add(d);
HorizontalSplitPanel s = new HorizontalSplitPanel();
d.add(s);
s.setLeftWidget(new Label("Left"));
s.setRightWidget(new Label("Right"));
s.setSize("200px", "100px");
s.setSplitPosition("100px");
}
}
Ian
http://examples.roughian.com
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---