Problems With AbsolutePanel inside of TabPanel

2009-04-09 Thread Carl
I am having issues displaying an AbsolutePanel inside a TabPanel - nothing is displayed (as if I added a panel containing no widgets), though I can view other tabs containing a SimplePanel for example. I have tried wrapping the AbsolutePanel in a VerticalPanel and a SimplePanel to no success,

Re: Problems With AbsolutePanel inside of TabPanel

2009-04-09 Thread Carl
I set the size of the AbsolutePanel to 100% by 100%. After playing in Firebug, I see that if I set the set the AbsolutePanel to width=100%, height=500px (or any pixel value) it displays as expected (if I make the change in Firebug), however if I set the size of the panel to 50px in GWT and add

Re: Problems With AbsolutePanel inside of TabPanel

2009-04-09 Thread Carl
I've added a WindowResizeListener to get the size and set a pixel value for each of the tabs in the TabPanel. public void onWindowResized(int width, int height) { mapTabs.setMapHeight(height); } I call this manually after the app is loaded as well to set the heights initially. If I

Re: Problems With AbsolutePanel inside of TabPanel

2009-04-09 Thread Vitali Lovich
have you tried setting the height of your body element? body { height : 100% } in your CSS file. On Thu, Apr 9, 2009 at 2:47 PM, Carl magnuson.c...@gmail.com wrote: I've added a WindowResizeListener to get the size and set a pixel value for each of the tabs in the TabPanel. public void

Re: Problems With AbsolutePanel inside of TabPanel

2009-04-09 Thread Carl Magnuson
I just tried that and it appears to have no effect. I added .gwt- TabPanelBottom { height: 100%} and the border for the tab panel now starts at the bottom of the screen as it should, but the content is still not shown until I select the existing (or another) tab. Now that I look further