I have XML files produced by another app that I would like to display in a grid, but the format of these files is not compatible with the grid. Where can I find info about the proper format of an XML file for displaying in the grid? Here is the syntax used in these XML files:
<?xml version=“1.0” standalone=“yes”?>
<Results>
<Fields ID=“144”>
<dDate>4/19/2016</dDate>
<Unit>901</Unit>
<Mileage>1234</Mileage>
<VIN>TEST</VIN>
<Comments>testing</Comments>
</Fields>
<Fields ID=“301”>
<dDate>5/1/2016</dDate>
<Unit>M8</Unit>
<Mileage>63412</Mileage>
<VIN>1234</VIN>
<Comments>
</Comments>
</Fields>
<Fields ID=“305”>
<dDate>5/1/2016</dDate>
<Unit>M7</Unit>
<Mileage>43424</Mileage>
<VIN>1234</VIN>
<Comments>
</Comments>
</Fields>
<Fields ID=“306”>
<dDate>5/1/2016</dDate>
<Unit>S3</Unit>
<Mileage>169206</Mileage>
<VIN>1234</VIN>
<Comments>
</Comments>
</Fields>
… etc.
Why won’t this XML syntax display? What needs to be changed above so that the XML displays in the grid?
Thank you!