all groups > flash data integration > may 2007 >
You're in the

flash data integration

group:

XML Format


XML Format rvail
5/17/2007 2:14:51 PM
flash data integration:
I can not read my XML into a DataGrid. I have looked at the TimeSheet tutorial
and have been able to get it to work, but can not make the adjustments to this
file. I was wondering if there was a problem with XML itself?




<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<datapacket>
<row fname="DON" lname="SMITH" school="WESTFIELD" />
</datapacket>
Re: XML Format Sean McMurtrey
5/26/2007 5:11:21 AM
I think you might have better luck using elements instead on attributes. The
data grid looks for arrays.

Try this and use the Data Connection Wizard Extension you can download for
free from the exchange.



<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<datapacket>
<fname>DON</fname>
<lname>SMITH</lname>
<school>WESTFIELD</school>
</datapacket>
AddThis Social Bookmark Button