xsl-list
[Top] [All Lists]

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

2010-04-04 11:42:48


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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--