[xsl] Problems with for-each

Subject: [xsl] Problems with for-each
From: "Kevin Nardi" <kevnardi@xxxxxxxxxxx>
Date: Thu, 12 Jul 2001 12:30:56 -0700
In an XSL stylesheet, I have a template with a code fragment that looks like this:

<xsl:template match="item">
	<tr>
		<xsl:for-each select="//itemList/headerList/header">
			<xsl:if test="name = 'title'">
				<xsl:apply-templates select="title" />
			</xsl:if>
		</xsl:for-each>
	</tr>
</xsl:template>

An <item> element looks like this:

<item>
	<title>Item 1</title>
	<identifier>aab</identifier>
	etc...
</item>

My problem is that inside of the for-each loop, the context changes to that of //itemList/headerList/header, and I lose the context of the current item I'm working with, so the select="title" is invalid. How do I get my context back?

Thanks.

-Kevin
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com


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



Current Thread