Hello,
i have planned to design my application with following areas:
-----------------------------------
Toolbar Area
----------------------------------
Workspace Header (for some information or filter criteria's)
-----------------------------------
Workspace Area
-----------------------------------
Statusbar Area
-----------------------------------
To use a datagrid which automatically resizes with the screensize, I have read that the best way
is to use the DockLayoutPanel.
I have also read following article:
In this articel it's also recommended to use Layout Panels for better standard mode support.
Therefore I have build a very easy example to test the Layout Panels.
In my GwtTestDock.java example I have created a empty application skeleton with Layout Panels.
In GwtTestDockFilled.java I have filled this skeleton with some widgets.
In this example I have some problems:
* The css padding is not working for SimpleLayoutPanel. Which class should I use instead?
I want to use the css padding in the empty skeleton class because if I replace the widgets for
this place holder, it should automatically use the css of the parent (slpWorkspaceHeaderPlaceholder).
I don't want to set the padding for every child of slpWorkspaceHeaderPlaceholder.
* The Disclosure Panel for "Additional Details" is not working. The reason is because the DockLayoutPanel
has a fix size for North. I tested a solution that I just change the North size if I open the Disclosure Pane but
the animation is not working.
* Is this the right track to design my application or should I use different Panels?
* Should I try to use only Layout Panels (better standard-mode support) or are there special cases for other Panels?
Thx for any help.
Marco