Skip to content

Instantly share code, notes, and snippets.

@wittemann
Created January 18, 2010 09:14
Show Gist options
  • Save wittemann/279900 to your computer and use it in GitHub Desktop.
Save wittemann/279900 to your computer and use it in GitHub Desktop.
list [qx]
var list = new qx.ui.form.List();
for (var i = 0; i < 10; i++) {
var item = new qx.ui.form.ListItem("Item " + i, "icon/22/actions/media-playback-start.png")
list.add(item);
}
this.getRoot().add(list);​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment