Flex:交换数组集合中的两个元素

发布于 2024-11-03 11:23:12 字数 126 浏览 2 评论 0原文

交换 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

她如夕阳 2024-11-10 11:23:12

我会这样做:

dataProvider.addItemAt(dataProvider.removeItemAt(selectedIndex), 0);

唯一的问题是这会使组合框重新绑定两次,但为了简单起见,这不应该成为问题。

I would do this instead:

dataProvider.addItemAt(dataProvider.removeItemAt(selectedIndex), 0);

The only problem is that this would make the combobox rebind twice, but for simplicity sake it shouldn't be an issue.

岛徒 2024-11-10 11:23:12

尝试setItemAt

Tried setItemAt?

无人问我粥可暖 2024-11-10 11:23:12

这有效!

      var temp:Object = myDataProvider.getItemAt(0);
      var pos:int = myDataProvider.getItemIndex(selected);

      myDataProvider.setItemAt(selected,0);
      myDataProvider.setItemAt(temp,pos);
      myDataProvider.refresh();

This worked!

      var temp:Object = myDataProvider.getItemAt(0);
      var pos:int = myDataProvider.getItemIndex(selected);

      myDataProvider.setItemAt(selected,0);
      myDataProvider.setItemAt(temp,pos);
      myDataProvider.refresh();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文