[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] updating xsl:variable inside the loop


Subject: Re: [xsl] updating xsl:variable inside the loop
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 29 Jan 2004 11:50:05 GMT

> xsl:variable should be updated in next iteration. 

You can not change the value of a variable once it is bound.

I think you just want to test if the rowindex attribute on the current
element is the same as on the previous, in which case you don't need a
variable at all, just

<xsl:if test="@rowindex=preceding-sibling::*/@rowindex">
...



-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



Current Thread