Issue 17: array collection
Status:  Done
Owner: ----
Closed:  Dec 2009
Reported by abidr...@gmail.com, Aug 31, 2009
 [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'}]}
    ]
    );
    


Aug 31, 2009
#1 mail.Bha...@gmail.com
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'}]
  }
]);
Dec 22, 2009
Project Member #2 marc.hug...@gmail.com
I believe your question was answered.
Status: Done