[xsl] Recursive teplate (sort)

Subject: [xsl] Recursive teplate (sort)
From: "Giancarlo Rossi" <giancarlo_rossi@xxxxxxxxxx>
Date: Mon, 9 Oct 2006 11:21:28 +0200
I have just this situation :


<xsl:template match="/">
<xsl:for-each select="/root" >
<xsl:for-each select="my_node" >
<xsl:for-each select="my_node_parallel" >

<!--I Create Variable and calculate value for totale_finale--> 
<--!I need to order using totale_finale value -->

<xsl:value-of select="format-number($totale_finale,'#.##')" />

</xsl:for-each>
</xsl:for-each>
</xsl:for-each>

</xsl:template>


How can I do node-set able to sorting this kind of template ?

Thanks in advance.
Regards.

Current Thread