Thx for the Info
i figured out the onStart() and for no I removed the service entry
behind the presenter
so it starts ( also added a bind to it)
What i want to do is create a
Layout with North , Center and South ( BorderLayoutData )
within the Center there will be a InnerWest, InnerEast and a Center
with collapsable sides
The Top ( LayoutRegion.North ) has Login , About and that sort of
stuff
The Bottom ( LayoutRegion.South) has some HTMLContainer
And the Middle will have All of the Side, Inner West has Menu ( which
will be expended when clicked ) , Inner.East , will be expend when
clicked on Grid
And Center will have TABPanel with again a TabPanel with each TAB
So all the different TABS have there own Views, am i right?
For instance the Tab Provider ( which is located in the InnerCenter )
has a TabPanel with 3 tabs A,B and C
in A there is a FilterPanel with Search, distance etc,, underneath is
a Summary with all the Categorys and count how many adds are there,
and underneath the Summary is a GRID with PageCounter etc...
if you click on the grid line InnerEast will show. If you click via
Filterpanel on Search, a Google map will be shown instead of the
Summary and Grid, The Google map has pinpoints
if you click on a pinpoint InnerEast will show with relevand
information of the Provider just like via the Grid.
This is One Tab
Some tabs are the same look and feel so the data only needs to be
changed the layout will be the same. If i understand it right every
unique PANEL needs to have its own view with a Presenter and
Interface.
But where do define the the Layouts in
what does the ApplicationRootView extends ViewPort, or doesn't it
matter
and like your examples do i define then the
BorderLayoutData borderLayoutDataNorth = new BorderLayoutData
(LayoutRegion.NORTH,50);
borderLayoutDataNorth.setMargins(new Margins(5));
borderLayoutDataNorth.setFloatable(true);
borderLayoutDataNorth.setHideCollapseTool(true);
borderLayoutDataNorth.setSplit(true);
and so on this View
or am i thinking the wrong way....
As i said i,m new with GXT and GWT so a lot of different Containers,
Panels etc are there to know.
Thx for your Help,
regards toine