在 Flex 中刷新/重新加载数据网格
我正在使用数据网格。 它有 itemEditor 组件、组合框等作为列的一部分。 理想情况下,datagrid.invalidateList() 方法可以使用新的 dataProvider 数据重新加载数据网格。
但是,对我来说,它附加到旧数据,新数据添加到旧数据下方。 我无法修复数据网格的重新加载。
I am using a datagrid. It has itemEditor components, combo boxes, etc. as aprt of columns.
Ideally datagrid.invalidateList() method works to reload the datagrid with new dataProvider data.
But, for me it is appending to the old data and new data gets added below the older data. I am not able to fix this reload of datagrid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用ArrayCollection,而不是Array! ArrayCollection 提供您需要的所有更改通知机制。 数组没有。
Use ArrayCollection, not Array! ArrayCollection provides all the change notification machinery you need. Array does not.
我无法准确理解您的问题所在。 难道不能用新集合替换 DataGrid.dataProvider 吗?
I'm having a little trouble understanding exactly what your problem is. Can't you just replace DataGrid.dataProvider with the new collection?
好吧,我明白了。 我只需要将数组清空即可。
所以现在它的 likeif arr 是一个充当数据提供者的数组。
arr=[];
这使得数组为空,然后我将其设置为数据提供者。
Well I got that. I just had to make my array empty.
so now its likeif arr is an array acting as dataprovider.
arr=[];
This makes the array empty and then i make it as dataprovider.