Re: [xsl] "not a node item" inside distinct-values

Subject: Re: [xsl] "not a node item" inside distinct-values
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 8 Jun 2006 15:37:45 +0100
Others have pointed to teh immediate cause of teh error message, but if
you find yourself doing this: 

> <xsl:for-each select="distinct-values(//item/@racknum)">
>         <xsl:variable name="rack-num" select="."/>
>         <xsl:variable name="pocket-num" select="//item[./@racknum =
> $rack-num and position() = last()]"/>

9 times out of 10 its easier (and probably more efficient) to do


<xsl:for-each-group select="//item" group-by="@racknum">

(also probably //item should just be item)



David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread