Hello,
I've got an Advanced Data Grid that lists XML data in the following
(simplified) form...
<address Address_Row_ID="111112"/>
<address Address_Row_ID="111113"/>
<address Address_Row_ID="111114"/>
Clicking a button in the Adv Data Grid row, appends a child XML node to the
row clicked so it looks like this...
<address Address_Row_ID="111112">
<productDetails>
<productDetail fuelType="Gloves"/>
<productDetail fuelType="Hats"/>
</productDetails>
</address>
This product data is then to be displayed in a DataGrid under one of the
column renderers.
My initial problem is that now the <address> node has children, the Adv Data
Grid is now showing a folder icon, as if it is expandable and it is
overriding my item Renderer - is it possible to stop this?
Thanks for any help...
Nick