Dear Masters,

my very simple Dialog

    public static final String DIV_MAIN = "editorMain";

    private HorizontalSplitPanel mainSplitPanel = new
HorizontalSplitPanel();
    private static VerticalSplitPanel leftSplitPanel = new
VerticalSplitPanel();
    private static TabPanel mainTabPanel = new TabPanel();

    public void onModuleLoad() {

        mainSplitPanel.setWidth("100%");
        mainSplitPanel.setSplitPosition("300px");

        mainSplitPanel.setLeftWidget(leftSplitPanel);
        mainSplitPanel.setRightWidget(mainTabPanel);
        leftSplitPanel.setHeight("100%");
        leftSplitPanel.setStylePrimaryName
(CssStyleConstants.CSS_LEFT_SPLIT_PANEL);

        final RootPanel rootPanel = RootPanel.get(DIV_MAIN);
        rootPanel.add(mainSplitPanel);
    }

shows vertical white bar between left und right panel if I resize the
windows vertically in hosted mode. The bar normaly comes while I pull
the bottom of the hosted-Mode Browser-Window first down and there up.
What is wrong with my code?


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