Hi
I am using flex repeater.
When I get a click event on the flex repeater, is there any way I can identify which of the instances generated the click?
Reason is, when I add the instances to the flex repeater I add some additional attributes to the instance and I would like to access these attributes from the click
The suggestion I linked was actually not the "answer" I thought it was - I've answered this question or a similar way of asking it to many times to count here on the forums.
I don't see an onInstanceClicked Event for the Flex Repeater, and I should amend that post.
For the Flex Repeater, you're most likely going to need to have the instanced View "broadcast" that is has been clicked by placing an onClick Event on the root node of the View. That onClick Event should invoke system.perspective.sendMessage with a scope of "page". The Flex Repeater should have a configured Message Handler tied to the same message type as the sendMessage function you will be invoking in the instanced View.