Re: [xsl] group-starting-with drops child text nodes - workaround?

Subject: Re: [xsl] group-starting-with drops child text nodes - workaround?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 16 Jun 2010 01:30:59 +0100
On 16/06/2010 01:23, tom schmitter wrote:
<xsl:for-each-group select="*"

you only group what you select, and * selects elements. use select="node()" if you want all nodes. This applies to apply-templates or for-each (any xpath expression) as well as for-each-group.


David

Current Thread