>
> Hello,
> Is there a way to do <xsl:for-each ..... and looping backwards.
As it happens, there is.
<xsl:sort select="position()" data-type="number" order="descending"/>
It's actually a good conformance test for your processor!
Mike Kay
>
> My XML looks like
> <histo>
> <bar value="60" legend="Jan" />
> <bar value="77" legend="Feb" />
> <bar value="53" legend="Mar" />
> <bar value="14" legend="Apr" />
> </histo>
>
> and I want to store 14,53,77,60 in a variable .
>
>
> <xsl:variable name="position">
> <xsl:for-each select="$path">
> <xsl:value-of select="@value"/>,
> </xsl:for-each>
> </xsl:variable>
>
>
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
>
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- for-each order
- Charly - Fri, 14 Dec 2001 11:34:20 -0500 (EST)
- Jeni Tennison - Fri, 14 Dec 2001 12:12:18 -0500 (EST)
- Trevor Nash - Fri, 14 Dec 2001 12:27:25 -0500 (EST)
- Michael Kay - Fri, 14 Dec 2001 12:35:16 -0500 (EST) <=
- <Possible follow-ups>
- McNally, David - Fri, 14 Dec 2001 12:30:57 -0500 (EST)
- Trevor Nash - Fri, 14 Dec 2001 14:00:16 -0500 (EST)
- TP - Fri, 14 Dec 2001 14:42:35 -0500 (EST)
- Joerg Heinicke - Fri, 14 Dec 2001 15:53:26 -0500 (EST)
|
|