I'm very new to XSLT and XML. I'm trying to make a dynamic list based on how many CASES come back from an XML file.
The XML section about CASES looks like this:
...
<CASES>
<CASE>000000000000014-00001</CASE>
<CASE>000000000000014-00002</CASE>
<CASE>000000000000014-00003</CASE>
</CASES>
...
My XSLT code (excerpt) for the table I'm creating looks like this:
...
CASES:
<table style="width: 100%;">
<xsl:for-each select="CASES/CASE">
<tr>
<td><xsl:value-of select="CASE"/></td>
</tr>
</xsl:for-each>
</table>
...
The output is three blank table rows. Could you please tell me what I'm doing wrong?