vote up 0 vote down star

I need a vertical layout, which would fill browser's viewport top to bottom, with on overflow (scrollbars). I need to layout widgets on the top, and on the bottom, and have one widget in the center which would stretch to fill the remaining space.

There seems to be DockLayoutPanel for this purpose, the problem with it is that it forces me to specify widget sizes, and I don't know the sizes of the top/bottom widgets before the browser does it's layouting job, which is tricky (buggy) to track. I cannot find the right moment when to measure my widgets, and I don't want to do this kind of layouting code anyway.

flag

50% accept rate

1 Answer

vote up 0 vote down

What about the body's onload event?

link|flag
you cannot register body onload event from within GWT, and that's why I suppose it's not best practice. One more thing, one might need to load some additional content right after module loads, which in turns changes DOM, and then layouting needs to be redone. it's a hell, I started to use DockLayouyPanel – skrat Oct 30 at 12:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.