Flex中数组收集的双向数据绑定
我使用的是flex 3.5 sdk。我想将数组集合绑定到表单。数组集合的结构是这样的。
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;
我想将 MyClass 对象的数组集合(双向)绑定到一个表单,该表单具有一个表和该表内的另一个表。
我怎样才能做到这一点?
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 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试将 MySecondClass 中的 var 设置为 binable。
如果更改对象的值,则与该数据关联的单元格也应更改。
//PS
在提问者提供更多信息后回答。
您可以添加
You can try set the var in MySecondClass to binable.
If you change the value of the object, the cell associated with this data should be change.
//P.S.
Answer after more input from questioner.
You can add the