PDA

View Full Version : Grid and arbitrarily deep data structure


sagipolley
05-04-2005, 12:33 AM
Hi folks,

Is there any way I can use a grid to display my arbitrarily deep data?

My data looks like this:


<project>
<action/>
<action/>
<project>
<action/>
<action/>
<project>
<action/>
<action/>
</project>
</project>
</project>


I want a grid that displays all the <actions>s (regardless of where they are in the data. Is this possible without transforming the data into a flat structure?

Thanks,

Martin