|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: for-each order
Hi Charly,
> Is there a way to do <xsl:for-each ..... and looping backwards.
Sure. Sort (numerically) on position() in descending order:
<xsl:for-each select="histo/bar">
<xsl:sort select="position()" order="descending"
data-type="number" />
<xsl:value-of select="@value" />
<xsl:if test="position() != last()">,</xsl:if>
</xsl:for-each>
Note that the call to position() in the select attribute of the
xsl:sort looks at the order of the selected nodes in the document,
whereas the call to position() within the xsl:for-each looks at the
sorted order of the nodes as they're being processed.
I hope that helps,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








