use of com.sencha.gxt.widget.core.client.container.BorderLayoutContainer in project mvp4g2-examples by mvp4g.
the class ShellView method createView.
public void createView() {
this.viewport = new Viewport();
this.shell = new BorderLayoutContainer();
viewport.add(this.shell);
this.northContainer = createContentPanel();
BorderLayoutContainer.BorderLayoutData bldNorth = new BorderLayoutContainer.BorderLayoutData(.4);
bldNorth.setCollapsible(true);
bldNorth.setSplit(true);
this.shell.setNorthWidget(this.northContainer, bldNorth);
this.southContainer = createContentPanel();
BorderLayoutContainer.BorderLayoutData bldSouth = new BorderLayoutContainer.BorderLayoutData(36);
this.shell.setSouthWidget(this.southContainer, bldSouth);
this.centerContainer = new SimpleContainer();
this.shell.setCenterWidget(this.centerContainer);
}
Aggregations