I am using flex 3.5 sdk. I want to bind an array collection to a form. The structure of array collection is like this.
MyClass :
var value : String;
var arr : ArrayCollection;
Each element in arr above is an object of MySecondClass
MySecondClass :
var val1 : String;
var val2 : String;
var val3 : String;
I want to bind array collection of MyClass objects (two-way) to a form which has a table and another table inside this table.
How can I accomplish that ?