Re: [xsl] Grouping problem

Subject: Re: [xsl] Grouping problem
From: "Martin Honnen martin.honnen@xxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Tue, 29 Mar 2022 21:12:55 -0000
Am 29.03.2022 um 23:01 schrieb rick@xxxxxxxxxxxxxx:
<xsl:for-each-group select="pgf" group-starting-with="@level[.='1']">


Use

B group-starting-with="pgf[@level = 1]"

the same change (i.e. to write pattern to match on the pgf elements in
the grouping population) needs to be applied to your further grouping of
the other levels

Current Thread