Hi gurus

I have been breaking my head since 2 days on how to populate date from
an xml file to an advanceddatagrid using actionscript 3.

I could see the below code to load the xml file

var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, loadXML);
loader.load(new URLRequest(“content.xml”));

function loadXML(e:Event):void
{
        xml = new XML(e.target.data);
        trace(xml);
}

Converting the xml object to an ArrayCollection I am not sure how to
do that. Once I get the ArrayCollection object, I could populate the
date to the datagrid.

Please help me if any of you have a solution for this.

Thanks
Pradp

-- 
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