I have to hand it to you, your changes (summarized below) do produce
the desired 50% height in the log message. But it's getting a little
off track from my original intention and it doesn't seem to help in
compiled mode, my ultimate goal. I think at this point I'll try
reporting this as a bug and see what kind of response I get.
< appPanel.setCellHeight(bodyPanel, "50%");
< bodyPanel.setSize("100%", "100%");
---
> appPanel.setCellHeight(bodyPanel, "100%");
> bodyPanel.setSize("100%", "50%");
> bodyPanel.add(new HTML("X"));
John
On Oct 17, 11:05 pm, "Ian Bambury" <[EMAIL PROTECTED]> wrote:
> 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
-~----------~----~----~----~------~----~------~--~---