xsl-list
[Top] [All Lists]

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

2010-06-15 19:31:27
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


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--