获取第一个元素的索引以匹配 XMLListCollection 对象中的条件

发布于 2024-08-07 10:39:56 字数 131 浏览 10 评论 0原文

我有一个 XMLListCollection 对象,其中包含具有 ID 属性的项目。我想通过 id 找到一个特定的项目,然后获取它在集合中的索引。 这样做是为了能够告诉组合框(其数据提供者是 XMLListCollection)要显示的项目的索引。

I have an XMLListCollection object that contains items with an ID property. I want to find one particular item by id and then get it's index in the collection.
This is done to be able to tell the comboBox (whose dataProvider is the XMLListCollection) the index of the item to display.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

动听の歌 2024-08-14 10:39:56

看看这是否有效:(将“item”替换为适当的标签名称)。

comboBox.selectedItem = XML(xmlListCol.source.item.(@id == requiredIndex));

如果没有,请使用这个:

var list:XMLList = xmlListCol.source;
var index:Number = -1;
for(i = 0; i < list.length(); i++)
  if(XML(list[i]).@id == requiredID)
  {
    index = i;
    break;
  }
if(index != -1)
  comboBox.selectedIndex = index;
else
  //deal with it

See if this works: (replace 'item' with the appropriate tag name).

comboBox.selectedItem = XML(xmlListCol.source.item.(@id == requiredIndex));

If not, use this:

var list:XMLList = xmlListCol.source;
var index:Number = -1;
for(i = 0; i < list.length(); i++)
  if(XML(list[i]).@id == requiredID)
  {
    index = i;
    break;
  }
if(index != -1)
  comboBox.selectedIndex = index;
else
  //deal with it
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文