|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Selecting similar XML nodes by a sort criteria
so this is a grouping problem (where you want to colour each group the
same colour) as always they are easier in xslt2 but easy enough in xslt1
using a standard idiom such as muenchiam grouping.
<xsl:for-each
select="zipcode/book[generate-id()=generate-id(key('b',@areacode)[1])]">
<xsl:variable name="color">
<xsl:choose>
<xsl:when test="position() mod 2=1">blue</xsl:when>
<xsl:otherwise>grey</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:for-each select="key('b',@areacode)">
<tr bgcolor="{$color}">...
</tr>
</xsl:for-each>
<xsl:for-each>
or in xslt2 the same but with more natural looking instructions
<xsl:for-each-group select="zipcode/book" group-by="@areacode">
<xsl:variable name="color"
select="if (position() mod 2 = 1) then 'blue' else 'grey'"/>
<xsl:for-each select="current-group()">
<tr bgcolor="{$color}">...
</xsl:for-each>
</xsl:for-each-group>
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.
________________________________________________________________________
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








