Hi!
There seems to be a layout problem when I use ContentPanel.setTopComponent() & ContentPanel.setBottomComponent() at the same time... Shouldn't it be possible to do it?
Example:
...
ContentPanel panel =
new ContentPanel();
panel.setHeading("Tasks");
panel.setFrame(true);
panel.setSize(700, 300);
panel.setPagePosition(100, 100);
panel.setLayout(new FitLayout());
panel.setShadow(true);
panel.setTopComponent(loadTopToolBar());
panel.add(loadTable());
panel.setBottomComponent(loadBottomToolBar());
...