Skip to content

Instantly share code, notes, and snippets.

@wittemann
Created January 18, 2010 10:31
Show Gist options
  • Save wittemann/279930 to your computer and use it in GitHub Desktop.
Save wittemann/279930 to your computer and use it in GitHub Desktop.
RadioButtonGroup [qx]
rc = new qx.ui.form.RadioButtonGroup();
for (var i = 0; i < 10; i++) {
var rb = new qx.ui.form.RadioButton("r" + i);
rb.setModel("r" + i);
rc.add(rb);
}
this.getRoot().add(rc);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment