I’m trying to sort a list but i’m having problems.
I have a XSLT file that creates a table…this is its code:
<xsl:call-template name=“get_position”>
<xsl:with-param name=“param1” select=“$param1”/>
</xsl:call-template>
So, I have another XSLT file that has the template “get_position” and this is its code:
<xsl:template name=“get_position”>
<xsl:param name=“param1”/>
<xsl:for-each select=“/test/[ParamID=$param1]/positions”>
<xsl:value-of select=“($param1)/
@position”/>
</xsl:for-each>
</xsl:template>
What I have to do to sort the values depending of the position…??
Thanks!
#webMethods#API-Management#Tamino