In my Application i want to read XML file dinamically and display the
contents in Datagrid .
i used Following Code.


function loadXmlFile():void{
    var request:URLRequest = new URLRequest("temp.xml");
        var loader:URLLoader = new URLLoader();
        loader.addEventListener(Event.COMPLETE, completeHandler);
            try {
                loader.load(request);
            } catch (error:ArgumentError) {
                    trace("An ArgumentError has occurred.");
            } catch (error:SecurityError) {
                trace("A SecurityError has occurred.");
            }
}

private function completeHandler(event:Event):void {
    dataXML:XML = XML(event.target.data);
    myGrid.dataProvider=dataXML;

}

I getting XML object(dataXML) but i dont know how to display it to
Datagrid. 






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/flexcoders/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to