Hi,
      I have two http service calls and they both return two separate
XML data. I need to merge some items(columns) from each XML and use
that as a dataprovider for the datagrid. Does anyone know how to do
that?

XML1:

<data>
    <province>
        <provinceId>1</provinceId>
        <instanceName>ABC</instanceName>
        <url>www.xyz.com</url>
    </province>
</data>


XML2:

<data>
    <items>
        <provinceId>1</provinceId>
        <itemName>test1</itemName>
      </items>
</data>


The dataprovider for the datagrid should contain:

 <provinceId>1</provinceId>
 <instanceName>ABC</instanceName>
 <url>www.xyz.com</url>
 <itemName>test1</itemName>


thanks

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.

Reply via email to