RE: [xsl] XSL Processing to avoid repetitions

Subject: RE: [xsl] XSL Processing to avoid repetitions
From: "Fabien Tillier" <f.tillier@xxxxxxxx>
Date: Wed, 16 Jun 2010 16:36:33 +0200
Yes !
Sorry for being so blind.
Your code works. It is just (I think) that I was messing with the way to set
the "fields"
Thanks a lot
Best regards,
Fabien


-----Message d'origine-----
De : Martin Honnen [mailto:Martin.Honnen@xxxxxx]
Envoyi : mercredi 16 juin 2010 16:30
@ : xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Objet : Re: [xsl] XSL Processing to avoid repetitions

Fabien Tillier wrote:

> Thanks for your answer, but it doesn't work for me.
> I have resent a message with my real data.
> Maybe your solution would work if I don't change it to fit my data :)

Andrew already suggested what to do, you simply can nest for-each-group e.g.

<ol>
   <xsl:for-each-group select="/Results/Row" group-by="CONTRACT">
     <li>
       <xsl:value-of select="current-grouping-key()"/>
       <ol>
         <xsl:for-each-group select="current-group()" group-by="CODE">
           <li>
             <xsl:value-of select="current-grouping-key()"/>
             <ol>
               <xsl:for-each select="current-group()/NUMERO">
                 <li>
                   <xsl:value-of select="."/>
                 </li>
               </xsl:for-each>
             </ol>
           </li>
         </xsl:for-each-group>
       </ol>
     </li>
   </xsl:for-each-group>
</ol>

--

	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/

Current Thread