Flex 数组集合高级数据网格
如果我有两组 arraycollection,例如:
var abc:arraycollection = new arraycollection([{region:"AAA"}])
var cde:arraycollection = new arraycollection([{territory:"A"},{territory:"b" }])
我如何将上面两组数组集合保存到advancedDatagrid
谢谢
if i have two set of arraycollection like:
var abc:arraycollection = new arraycollection([{region:"AAA"}])
var cde:arraycollection = new arraycollection([{territory:"A"},{territory:"b"}])
how do i palm the above two set of arraycollection to advancedDatagrid
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解你的问题:
尝试从这两个数组中创建第三个数组集合,以适合高级数据网格的数据,并将其添加为数据提供者。
If I understand your question:
try to make a third arraycollection out of these two to suite your data for advancedDatagrid, and add is as dataprovider.