Skip to content

Instantly share code, notes, and snippets.

@wittemann
Created January 18, 2010 09:14
Show Gist options
  • Save wittemann/279901 to your computer and use it in GitHub Desktop.
Save wittemann/279901 to your computer and use it in GitHub Desktop.
tree [qx]
var tree = new qx.ui.tree.Tree();
this.getRoot().add(tree);
var root = new qx.ui.tree.TreeFolder("root");
root.setOpen(true);
tree.setRoot(root);
for (var i = 0; i < 10; i++) {
root.add(new qx.ui.tree.TreeFolder(i + ""));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment