Re: [xsl] I'm trying to get the last item in a group (but getting the first), xslt v2

Subject: Re: [xsl] I'm trying to get the last item in a group (but getting the first), xslt v2
From: "Imsieke, Gerrit, le-tex" <gerrit.imsieke@xxxxxxxxx>
Date: Sun, 04 Apr 2010 18:42:18 +0200
On 04.04.2010 18:28, Kevin Grover wrote:
Using XSLT 2, I'm trying to read through a list of books that I keep
in XML.  I want to get
the last book that I've read in each series.

I tried to use XML groups and get the last() item, but it's not
working as I expected: it always comes up as the first book in the
series.

What I'm a going wrong?

Use <xsl:value-of select="current-group()[last()]/title"/> instead of <xsl:value-of select=".[last()]/title"/> (the same for current-group()[last()]/series/@number).


Gerrit

Current Thread