Flex:交换数组集合中的两个元素
交换 Flex Array Collection 中的元素的最佳方法是什么?
我将 ArrayCollection 作为数据提供者绑定到组合框。 选择一行,应将对象移动到组合框列表的顶部,并将顶部对象移动到所选对象的位置。
What's the best-approach to swap to elements in a Flex Array Collection?
I am binding a ArrayCollection as a dataprovider to combo-box.
Selecting a row, should move the object to the top of the combo-box list, and move the top-object to selected object's position.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会这样做:
唯一的问题是这会使组合框重新绑定两次,但为了简单起见,这不应该成为问题。
I would do this instead:
The only problem is that this would make the combobox rebind twice, but for simplicity sake it shouldn't be an issue.
尝试setItemAt?
Tried setItemAt?
这有效!
This worked!