use of com.sencha.gxt.widget.core.client.PlainTabPanel in project mvp4g2-examples by mvp4g.
the class ContentView method createView.
@Override
public void createView() {
this.container = new ContentPanel();
this.container.setHeaderVisible(false);
this.tabPanel = new PlainTabPanel();
this.container.setWidget(this.tabPanel);
this.tabPanel.setTabScroll(true);
this.defaultTabItem = new TabItemConfig("Sample Mail Application");
this.defaultTabItemContent = new HTML("");
this.tabPanel.add(this.defaultTabItemContent, this.defaultTabItem);
}
Aggregations