This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Problems with for-each


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]