Hi,

I'd like to make a VerticalPanel which increases the overall height of
the document body, and let the main browser scrollbar scroll it.
Something like:

  <body>
    <myVerticalPanel>
        ...  will add a bunch of stuff here ....
    </myVerticalPanel>
  </body>

I'm doing this like:

  VerticalPanel vp = new VerticalPanel();
  vp.add(...);
  vp.add(...);
  ...

  RootPanel.get().add(vp);

but the main browser frame has no scrollbars, though I can see the
content spilling off the bottom of the page. How do I get the document
to recognize that its height is taller than the actual document?

Thanks

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