Subject: Re: 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 |
- RE: Which commands to use: xsl:if, xsl:when, xsl:choose, xsl:otherwise ??
- JWolpert - Tue, 27 Jan 2004 14:47:06 -0500 (EST)
- Arulraj - Thu, 29 Jan 2004 06:12:01 -0500 (EST)
- Manos Batsis - Thu, 29 Jan 2004 06:38:23 -0500 (EST)
- David Carlisle - Thu, 29 Jan 2004 06:59:40 -0500 (EST) <=
- Arulraj - Thu, 29 Jan 2004 08:30:58 -0500 (EST)
- David Carlisle - Thu, 29 Jan 2004 09:59:40 -0500 (EST)
- Arulraj - Thu, 29 Jan 2004 23:36:57 -0500 (EST)
|
|