Expand my Community achievements bar.

Accessing child elements of an XML model in a DataGrid

Avatar

Level 2
Here's the xml file



<?xml version="1.0" ?>

<testxml>

<states name="MA">

<product>Math</product>

<product>English</product>

</states>

<states name="PA">

<product>Math</product>

<product>English</product>

</states>

</testxml>



My DG is simple the results are at the state level stored in
a XMLList which is used in the DG dataprovider.

1st column I access the state attribute with the
datafield='@name'

2nd column I access the product with the datafield='product'
and get another XMLList





When I access this xml in a DataGrid I get the attribute of
the state but the product comes back as an XMLList. This looks like
I'll need to need to have a DataGrid within a DataGrid (not too
pretty), Maybe use an AdvDG?



Figure this is something someone else has done. Any
ideas?
0 Replies