On Jan 12, 11:33 pm, Stine <[email protected]> wrote:
> Hello :)
>
> I am having problems making my panels display the way they should -
> they look almost empty!! :(
>
> For instance when I have this code...
>
> public final void onModuleLoad() {
>         SplitLayoutPanel p = new SplitLayoutPanel();
>         p.addWest(new HTML("navigation"), 128);
>         p.addNorth(new HTML("list"), 384);
>         p.add(new HTML("details"));
>         RootLayoutPanel.get().add(p);
>
> }
>
> ... I see the following in my browser...
>
> navigation                           list
>
>                                           details
>
> ... which is not very fancy! ;D
>
> What am I missing?! :/
>
> Thanks a lot,
> Stine :)

There is a bug that the background color for the splitter is hardcoded
to be white, no matter how you style it the splitter is white (kinda
useless) see http://code.google.com/p/google-web-toolkit/issues/detail?id=4335
for the bug, i had the problem that everytime I tried to colour up the
missing bar it ends up white. might work if you style the splitter
with an image. or use the !important css as stated in the problem

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