xmlns:s=”library://ns.adobe.com/flex/spark”
xmlns:mx=”library://ns.adobe.com/flex/mx”>
//———————————————————————————————————-
override public function prepare(hasBeenRecycled:Boolean):void
{
super.prepare( hasBeenRecycled );
// We make the radio button mimic the selection status of the whole row.
const selected_items: Vector.
if( null==selected_items )
{
radio_button.selected=false;
return;
}
if( -1 !=selected_items.indexOf( data ) )
radio_button.selected=true;
else
radio_button.selected=false;
}
//———————————————————————————————————-
]]>
The “selected” property of the radio_button will be controlled by the “prepare” function.
The radio_button should not be allowed any user interaction. Hence disabling it.–>
label=””
enabled=”false”
horizontalCenter=”0″ verticalCenter=”0″ />