Hi Christopher,

Ignore my previous message... Looking at that Showcase source, your 
answer is completely correct. The Mobile Form is the way to go.

The header and decoration comes from the .addGroupHeader("text") 
form property. So...

       var form = new qx.ui.mobile.form.Form();

       [...]

       form.addGroupHeader("Gender");
       this.__radio1 = new qx.ui.mobile.form.RadioButton();
       this.__radio2 = new qx.ui.mobile.form.RadioButton();

       var radioGroup = new qx.ui.mobile.form.RadioGroup();
       radioGroup.setAllowEmptySelection(true);
       radioGroup.add(this.__radio1, this.__radio2);
       form.add(this.__radio1, "Male");
       form.add(this.__radio2, "Female");

Cheers!

------------------------------------------------------------------------------
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to