如何以编程方式移动 Flex 3 AdvancedDataGrid 中的项目?
有没有办法移动 AdvancedDataGrid 中的行以响应外部事件? 在这种情况下,我想要一个工具栏按钮,用于向上或向下移动网格中选定的一个或多个项目。 我认为问题在于使分层数据源与网格上的项目渲染器和选择数据的数组保持同步。
Is there a way to move a row in an AdvancedDataGrid in response to an external event? In this case, I'd like to have a toolbar button that moves an item or items selected in the grid either up or down. The problem as I see it is keeping the hierarchical data source in sync with the array of item renderers and selection data on the grid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的原始数据源是可绑定的(例如ArrayCollection),那么当您更改原始源时,应该更新数据网格。
If your original data source is bindable (eg. ArrayCollection), then the datagrid should be updated when you change the original source.