I'm having problems vertically aligning the labels next to each Radiobutton.
Is it because I'm using a styleName ?
How can I solve this problem ?

Tried using mx:Text and mx:HBox etc, but the Radiobuttons stick to the top
...

Tnx!

<mx:RadioButtonGroup id="answersGroup" />
<mx:Repeater id="list" dataProvider="{answers}" width="100%">
    <mx:RadioButton data="{list.currentItem.data}" label="{
list.currentItem.answer}" styleName="questionnaireCheckbox" />
</mx:Repeater>

Reply via email to