I have an arrayCollection with strings in them, is there some way I can databind a RadioButtonGroup to the array collection? As we can do for combo boxes
var cBox:ComboBox = new ComboBox();
cBox.dataProvider = arrayCollection;
There is no RadioButtonGroup.dataprovider property. I know this has to be done manually, what is the most efficient way to do this?