I can't figure out how to pass a property of a repeater item to a function
This is what I am trying but it is not working
<mx:Repeater id="linkrep" dataProvider="{this.helpRelatedData}">
<mx:LinkButton label='{linkrep.currentItem.title}'
click="displayHelpTopic(linkrep.currentItem.title)" color="#0000ff"/>
</mx:Repeater>
Basically I want to pass the value linkrep.currentItem.title but what I have
tried above does not work.
Anyone suggest how I can do this.
The label is displaying correctly.
Thanks in advance
Paul