Try this. Works for me. You might need a doctype
Ian

http://examples.roughian.com

        root.add(basePanel);
        basePanel.setSize("100%", "200px");

        basePanel.add(logPanel);
        basePanel.setCellWidth(logPanel, "30%");
        basePanel.setCellHeight(logPanel, "100%");
        logPanel.setSize("100%", "100%");

        basePanel.add(appPanel);
        basePanel.setCellWidth(appPanel, "70%");
        basePanel.setCellHeight(appPanel, "100%");
        appPanel.setSize("100%", "100%");

        appPanel.add(bodyPanel);
        appPanel.setCellWidth(bodyPanel, "100%");
        appPanel.setCellHeight(bodyPanel, "100%");

        bodyPanel.setSize("100%", "50%");
        bodyPanel.add(new HTML("X"));

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