xsl-list
[Top] [All Lists]

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

2005-05-12 18:17:21
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(_dot_)Gadd(_at_)businessobjects(_dot_)com>

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:

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


--~------------------------------------------------------------------
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>
--~--