get the index of first element to mach a condition in an XMLListCollection Object

2.1k views Asked by At

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.

1

There are 1 answers

1
Amarghosh On BEST ANSWER

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