Hi
I'm having trouble with an XSLT to loop through all the rows, and then all the columns in each row element.
So if this is the XML I have:
<root>
<subelement>
<rows>
<row title="Row1">
<column title="A" />
<column title="B" />
</row>
<row title="Row2">
<column title="C" />
<column title="D" />
</row>
</rows>
</subelement>
</root>
I would like output like this:
<h1>Row1</h1>
<ul>
<li>A</li>
<li>B</li>
</ul>
<h1>Row2</h1>
<ul>
<li>C</li>
<li>D</li>
</ul>
Regards
Peter