use of com.sencha.gxt.widget.core.client.container.SimpleContainer in project mvp4g2-examples by mvp4g.
the class ListView method createView.
@Override
public void createView() {
this.container = new SimpleContainer();
this.createStore();
this.createGrid();
this.container.add(this.grid);
}
use of com.sencha.gxt.widget.core.client.container.SimpleContainer 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);
}
use of com.sencha.gxt.widget.core.client.container.SimpleContainer in project mvp4g2-examples by mvp4g.
the class StatusView method createView.
public void createView() {
this.container = new SimpleContainer();
this.container.getElement().getStyle().setProperty("borderTop", themeDetails.borderColor() + " 1px solid");
this.label = new Label("loading ...");
this.label.getElement().getStyle().setProperty("fontSize", "24px");
this.label.getElement().getStyle().setProperty("fontFamily", themeDetails.panel().font().family());
this.label.getElement().getStyle().setProperty("color", themeDetails.borderColor());
this.container.add(this.label, new MarginData(6));
}
Aggregations