|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Xpath - count preceding-siblings matching some co
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.
|
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
|






