| Issue 17: | array collection | |
| 1 person starred this issue and may be notified of changes. | Back to list |
[Bindable] private var dataArray:ArrayCollection = new ArrayCollection(
[
{id: '1' [{name: 'Bob Smith', city: 'Town1'},
{name: 'Abid', city: 'hello'}]},
{id: '2' [{name: 'Jon Doe', city: 'Town2'}]}
]
);
Dec 22, 2009
I believe your question was answered.
Status:
Done
|
It seems problem is in array collection, Your collection is not well formed. its should be like this [Bindable] private var dataArray:ArrayCollection = new ArrayCollection ([ { id: '1',description: [{name: 'Bob Smith', city: 'Town1'}, {name: 'Abid', city: 'hello'}] }, { id: '2',description: [{name: 'Amit Bhardwaj', city: 'Jaipur'}, {name: 'Amitb', city: 'Delhi'}] } ]);