[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
RE: [xsl] Xpath - count preceding-siblings matching some condition
Subject: RE: [xsl] Xpath - count preceding-siblings matching some condition
From: "Angela Williams" <Angela.Williams@xxxxxxxxxxxxxxxxxx>
Date: Mon, 30 Apr 2007 13:35:24 -0500
|
That's wonderful!
Thanks!
Angela
-----Original Message-----
From: Bjorndahl, Brad [mailto:brad.bjorndahl@xxxxxxxxxxxxxxxx]
Sent: Monday, April 30, 2007 1:19 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] Xpath - count preceding-siblings matching some
condition
How about:
<table>
<xsl:for-each-group select="//data/a" group-starting-with="a[@col-nbr
lt preceding-sibling::a[1]/@col-nbr]" >
<xsl:variable name="row" select="position()" />
<xsl:for-each select="current-group()" >
<b col-nbr="{@col-nbr}" row-nbr="{$row}" />
</xsl:for-each>
</xsl:for-each-group>
</table>
Brad.
|