[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Using <xsl:for-each> and position() to increase i

Subject: RE: 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
xsl padlen
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

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.