Newly released!! DataGrid component for REACT: http://reactdatagrid.com
The Flex RadioButtonList control is a new control provided by the Flexicious library that allows multiple select or single select RadioButton List without the need for a repeater.

<!--Data bound RadioButton List example -->

<!--RadioButton List (With Flexicious)-->
<controls:RadioButtonList
dataProvider="{Employee.allStates}" rowCount="4" bindingSource="{employee1}" bindingProperty="stateCode"/>

<!--RadioButton List (Without flexicious)-->
<mx:Script>

     
<![CDATA[
           
private function onStateRadioButtonChange(event:Event):void{
                 
employee.stateCode=Employee.allStates[event.target.repeaterIndex];
           
}

]]></mx:Script>

<mx:Repeater id="rptrStates" dataProvider="{Employee.allStates}">
mx:RadioButton
label="{rptrStates.currentItem.data}" data="{rptrStates.currentItem.label}" click="onStateRadioButtonChange(event )" selected="{rptrStates.currentItem.data == employee.stateCode}" />
</mx:Repeater>