Hi there! I'm a starter at both GWT and SmartGWT applications.
We are designing a new web app, and from what I've read so far from GWT, we would do something like this:
A top panel holds the menu
A bottom (FlowPanel) the contents
Every time the user selects a menu, a widget would be set on the panel with
panel.add(widget).
We are creating our widgets as Composites with several GWT components.
Since we decided move to SmartGWT, I wonder if the same approach is valid:
A VerticalLayout with a bottom member being a freeform layout that gets drawn every time the users clicks on an icon.
Also, is it possible to use GWT 2.0 Composites?
Regards
We are designing a new web app, and from what I've read so far from GWT, we would do something like this:
A top panel holds the menu
A bottom (FlowPanel) the contents
Every time the user selects a menu, a widget would be set on the panel with
panel.add(widget).
We are creating our widgets as Composites with several GWT components.
Since we decided move to SmartGWT, I wonder if the same approach is valid:
A VerticalLayout with a bottom member being a freeform layout that gets drawn every time the users clicks on an icon.
Also, is it possible to use GWT 2.0 Composites?
Regards
Comment