RE: [xsl] Using <xsl:for-each> and position() to increase indent in each iterati

Subject: RE: [xsl] Using <xsl:for-each> and position() to increase indent in each iterati
From: "Aron Bock" <aronbock@xxxxxxxxxxx>
Date: Fri, 13 May 2005 01:17:21 +0000
David,

One may use a recursively-called template to print things such as padding. For example:

<xsl:for-each ...>
   <xsl:call-template name="pad">
       <xsl:with-param name="padlen" select="position()/>
   </...>
  ...print more stuff...
</...>

<xsl:template name="pad">
 <xsl:param name="padlen" select="0"/>

   <xsl:if test="$padlen > 0">
  <xsl:text>&#160;</...>
   <xsl:call-template name="pad">
       <xsl:with-param name="padlen" select="$padlen - 1"/>
   </...>
  </...>
</...>


From: "David Gadd" <David.Gadd@xxxxxxxxxxxxxxxxxxx>

Hi,


I am wanting to use the position() function to increase the indent in an <xsl:for-each> iteration by 3 spaces, using the following logic, but preferably without using a case statement:

_________________________________________________________________
Dont just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01/


Current Thread