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>
Sean McMurtrey - 26 May 2007 06:11 GMT
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>