Re: [xsl] possible? for-each-group inside a for-each-group

Subject: Re: [xsl] possible? for-each-group inside a for-each-group
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 2 Mar 2005 12:00:25 GMT
Inside a xsl:for-each group, just as in an xsl:for-each the current node
is one of teh nodes selected by the select expression.

so after 

<xsl:for-each-group select="par ...

it's a par node.
Then you do

<xsl:for-each-group select="*" g

so that is selecting children of the par node

but you have

group-ending-with="par...
and as far as I can see non of the children selected by * will be par
nodes so everything will be in the same group.


David

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

Current Thread