use of com.extjs.gxt.ui.client.widget.layout.BorderLayoutData in project activityinfo by bedatadriven.
the class PivotTableEditor method createGridContainer.
private void createGridContainer() {
center = new LayoutContainer();
center.setLayout(new BorderLayout());
add(center, new BorderLayoutData(Style.LayoutRegion.CENTER));
gridPanel = new PivotGridPanel(service);
gridPanel.setHeaderVisible(true);
gridPanel.setHeadingText(I18N.CONSTANTS.preview());
center.add(gridPanel, new BorderLayoutData(Style.LayoutRegion.CENTER));
viewBinder = new PivotTableBinder(eventBus, service, gridPanel);
}
use of com.extjs.gxt.ui.client.widget.layout.BorderLayoutData in project activityinfo by bedatadriven.
the class PivotTableEditor method createPane.
private void createPane() {
pivotPanel = new PivotTrayPanel(eventBus, service);
BorderLayoutData east = new BorderLayoutData(Style.LayoutRegion.EAST);
east.setCollapsible(true);
east.setSplit(true);
east.setMargins(new Margins(0, 5, 0, 0));
add(pivotPanel, east);
}
use of com.extjs.gxt.ui.client.widget.layout.BorderLayoutData in project activityinfo by bedatadriven.
the class PivotTableEditor method createFilterPane.
private void createFilterPane() {
filterPane = new PivotFilterPanel(eventBus, service, locator);
filterPane.applyBaseFilter(new Filter());
BorderLayoutData west = new BorderLayoutData(Style.LayoutRegion.WEST);
west.setMinSize(250);
west.setSize(250);
west.setCollapsible(true);
west.setSplit(true);
west.setMargins(new Margins(0, 0, 0, 0));
add(filterPane, west);
}
use of com.extjs.gxt.ui.client.widget.layout.BorderLayoutData in project activityinfo by bedatadriven.
the class AppFrameSet method setupStatus.
private void setupStatus() {
BorderLayoutData layout = new BorderLayoutData(LayoutRegion.SOUTH);
layout.setSize(SyncStatusBar.HEIGHT);
viewport.add(statusBar, layout);
}
use of com.extjs.gxt.ui.client.widget.layout.BorderLayoutData in project activityinfo by bedatadriven.
the class LocationDialog method addMap.
private void addMap() {
LocationMap mapView = new LocationMap(searchPresenter, newLocationPresenter);
add(mapView, new BorderLayoutData(LayoutRegion.CENTER));
}
Aggregations