Hi All,
I would like to use this layout in my gwt app:
The main window has a VerticalPanel, the first element of this VP is a TabPanel and the second is a status panel.
1. I need to force the status panel to the bottom of screen. Could I do it with something? Maybe with a css?
I tried to use DockPanel, but I don't need north panel and it seems to be it can't be 0px height if it is empty:(
2. I need to know the size of free area inside the tabpanel. How can I get it? I tried with:
the screen size is: $wnd.innerWidth; (JSNI)
getting tabpanel.tabbar size with tabpanel.getTabBar().getOffsetHeight()
the statusPanel size with statuspanel.getOffsetWidth()
the free space size should be:
screen size-statuspanel size-tabbar size;
It seems to be good in Opera browser, but cannot works exactly in FF and Chrome.
Is there any other settings to getting exact size of free area?
thx a lot
Zamek