My last Q: E4X select Nodes where descendants can be either A OR B or A && B was concerning how to query for multiple attribute values in E4X expressions, which @Patrick answered with this:
xml.Item.(descendants('ProductRange').(@id=="1" || @id=="2").length()>0);
Now the question is, how do we make the values dynamic using an array or string?
A bit like this, but this DOES NOT work:
var attributeValues:String = "@id==\"1\" || @id==\"2\" || @id==\"3\" || @id==\"4\"";
xml.Item.(descendants('ProductRange').(attributeValues).length()>0);
Many Thanks
An array holding your values can be made for example and then using an indexOf search to find the id in it :