Re: [xsl] First item of a for-each

Subject: Re: [xsl] First item of a for-each
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Mon, 16 Feb 2004 10:51:25 -0500
At 2004-02-16 15:08 +0000, Patricia Murray wrote:
When using a ..

<xsl:for-each select="item[***]">

</xsl:for-each>

How can I work out when Im in the first loop.

Your select= attribute defines the new current node list for processing in the loop.


The position() function reflects the position of the current node in the current node list.

So test="position()=1" will give you a true value for the first time in the loop.

My node set has a predicate on it

That doesn't affect position() ... it affects what is selected for the current node list, but once the list is selected, position() works for those that are selected.


I hope this helps.

........................ Ken


-- Public courses: upcoming world tour of hands-on XSL training events Each week: Monday-Wednesday: XSLT/XPath; Thursday-Friday: XSL-FO Washington, DC: 2004-03-15 San Francisco, CA: 2004-03-22 Hong Kong: 2004-05-17 Germany: 2004-05-24 England: 2004-06-07 World-wide on-site corporate, government & user group XML training!

G. Ken Holman                  mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Crane Softwrights Ltd.           http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0     +1(613)489-0999 (F:-0995)
Male Breast Cancer Awareness   http://www.CraneSoftwrights.com/s/bc


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



Current Thread