Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save caingougou/2092617 to your computer and use it in GitHub Desktop.
qooxddo splitpane
/* http://tinyurl.com/45yyrxr */
var container = new qx.ui.splitpane.Pane("horizontal");
var w1 = new qx.ui.Widget().set({
backgroundColor : "blue"
});
var w2 = new qx.ui.Widget().set({
backgroundColor : "green"
});
container.add(w1, 1);
container.add(w2, 2);
this.getRoot().add(container, { edge : 0});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment