I'm working on a tree component using a XMLLIST as a data provider.
<list>
<menuItem label="Home" menuItemId="1" >
<menuItem label="Info 1" menuItemId ="4"></menuItem>
</menuItem>
<menuItem label="Services" menuItemId="2" >
</menuItem>
<menuItem label="About" menuItemId="3" >
</menuItem>
</list>
I need to select a nested node by the property 'menuItemId' without knowing the index.For example, select the item with the menuItemId 4.
Any ideas?