ActionScript Code:
<mx:Repeater id="bodyRP" dataProvider="{dataProvider}" recycleChildren="true">
<mx:LinkButton label="{bodyRP.currentItem.label}" click="{doAction(bodyRP.currentItem.data)}"/>
</mx:Repeater>
The above code doesn't like the click assignment, as since its binding on something that doesn't directly persist (the repeater.currentItem), however I'm not really sure what the best approach to this is....
Basically, I want to be able to pass specific data paired to the button being made from the dataprovider passed into repeater when the click event is triggered. This shouldn't be complicated, right?