Subject: Re: Sorting and navigation
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 6 Sep 2007 12:10:16 +0100
|
so you just want
<xsl:variable name="sorted">
<xsl:for-each select="DOCUMENT">
<xsl:sort select="AUTHOR/>
<xsl:sort select="ID"/>
,xsl:copy-of select="."/>
</xsl;variable>
<xsl:for-each select="exslt:node-set($sorted)">
....
and now docuemnt order and sort order are the same so you can use
preceding-sibling::*[1]/ID to do column 3.
David
________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.
This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________
|