Hello there
I wonder how to bind data between two list components using AS3. Here is my xml data. I have loaded base xml data into productList listCom but I don't know how to get the features data into featuresList comp. can somebody help me please.
Appreciate your time.
Thanks
Krish
-----------------xml data----------------------
<?xml version="1.0" encoding="utf-8"?>
<products>
<product>
<name>Macintosh OSX</name>
<catagory>OS</catagory>
<imgtmb>images/macosx.jpg</imgtmb>
<desc>The best os on earth</desc>
<features>
<feature>Fast</feature>
<feature>Muti touch</feature>
<feature>Easy to use</feature>
<feature>Life time support</feature>
</features>
</product>
<product>
<name>Macintosh OSX</name>
<catagory>OS</catagory>
<imgtmb>images/macosx.jpg</imgtmb>
<desc>The best os on earth</desc>
<features>
<feature>Fast</feature>
<feature>Muti touch</feature>
<feature>Easy to use</feature>
<feature>Life time support</feature>
</features>
</product>
<product>
<name>Macintosh OSX</name>
<catagory>OS</catagory>
<imgtmb>images/macosx.jpg</imgtmb>
<desc>The best os on earth</desc>
<features>
<feature>Fast</feature>
<feature>Muti touch</feature>
<feature>Easy to use</feature>
<feature>Life time support</feature>
</features>
</product>
</products>
------------------------------