How do we identify a component created in a repeater using flex? : adobe flex action script
Answer / Satish Chandra Ram
In Flex, components created in a Repeater can be identified using the data property of the Repeater. Each repeated item has its own data object associated with it which contains the data that was used to create the item. For example: `<s:Repeater data="{myData}"> <s:ItemRenderer> <mx:Label text="{data.someProperty}" /> </s:ItemRenderer> </s:Repeater>` will give each label a different text depending on the someProperty of the data object for that particular item.
| Is This Answer Correct ? | 0 Yes | 0 No |
What does calling preventdefault() on an event do? How is this enforced? : adobe flex action script
Does exclude or exclude class really excludes the data or class?
Explain how binding works in mxml components in flex? : adobe flex action script
Difference between label and text?
What is a resource manager in flex actionscript?
State the difference between item renderer and item editors?
What is adapter in blaze ds?
What events are used by the collections?
Is double-clicking supported on various components?
What is a drag manager in adobe flex actionscript?
Explain about remote object? What is end point in remote object?
What is polymorphism in term of oop (flash actionscript)?