Skip to content

Instantly share code, notes, and snippets.

@caingougou
Created March 19, 2012 03:15
Show Gist options
  • Select an option

  • Save caingougou/2092666 to your computer and use it in GitHub Desktop.

Select an option

Save caingougou/2092666 to your computer and use it in GitHub Desktop.
qooxddo tab view
var tabView = new qx.ui.tabview.TabView();
var page1 = new qx.ui.tabview.Page("Layout", "icon/16/apps/utilities-terminal.png");
page1.setLayout(new qx.ui.layout.VBox());
page1.add(new qx.ui.basic.Label("Page Content"));
tabView.add(page1);
var page2 = new qx.ui.tabview.Page("Notes", "icon/16/apps/utilities-notes.png");
tabView.add(page2);
this.getRoot().add(tabView);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment