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

RE: First item of a for-each

Subject: RE: First item of a for-each
From: "Andrew Welch" <AWelch@xxxxxxxxxxxxxxx>
Date: Mon, 16 Feb 2004 15:37:55 -0000
xsl first item
> When using a ..
> 
> <xsl:for-each select="item[***]">
> 
> </xsl:for-each>
> 
> How can I work out when Im in the first loop. My node set has 
> a predicate on it so I don't know where I am in the sequence 
> but want to do something special in the first loop??

You aren't in a loop, you are iterating over a set of nodes that you
have selected to process.

So, if you have the xml:

 <item/>
 <something_else/>
 <item/>
 <something_else/>

And you do xsl:for-each select="node" you will get a list of <item>
nodes to process:

  <item/>
  <item/>

You have 'pulled' two nodes to process.  You can find out which <item>
you are currently processing by using the position() function.  So if
you wanted to do something special to the first <item> node, you could
do:

  <xsl:for-each select="item">
    <xsl:if test="position() = 1"> do something special </xsl:if>
  </xsl:for-each>



andrew 

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


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.