I am using this now to separate the values and it works great.
<xsl:template name="comma-separated-list">
<xsl:param name="list"/>
<xsl:value-of select="$list[1]"/>
<xsl:for-each select="$list[position() > 1]">
<xsl:choose>
<xsl:when test="last() > position()">
<!-- When it is not...
User Profile
Collapse
-
how to separate values
All,
I'm brand new to XSL and have no programming background.
I try to separate in an HTML output the values returned from an XML file.
The entry containing the data looks like this:
<ATTRIBUTE NAME="Users">
<VALUE>AgentThr ee</VALUE><VALUE>De rekL</VALUE>
</ATTRIBUTE>
Using the folowing code only returns the fist VALUE...
No activity results to display
Show More
Leave a comment: