Walk/loop through an XSL key: how?
- by krisvandenbergh
Is there a way to walk-through a key and output all the values it contains?
I though of it this way:
<xsl:for-each select="key('kElement', '.')">
<li><xsl:value-of select="." /></li>
</xsl:for-each>
However, this does not work. I simply want to list all the values in a key for testing purposes.
The question is simply: how can this be done?