[xsl] param-value in Expression

Subject: [xsl] param-value in Expression
From: UweLoydl@xxxxxx
Date: Wed, 23 May 2001 19:17:18 +0200 (MEST)
I wonder why my for-each select=... doesn't work. Wenn I use
$root[@name='blabla'] it works fine. 

<xsl:param name="root" expr="teams/team"/>
<xsl:param name="rootstring" expr="'teams/team'"/>
<xsl:param name="filterattr" expr="@name"/>
<xsl:param name="filter" expr="'blabla'"/>
<xsl:template match="/">
	<html>
		<head></head>
		<body>
		<form>
		<table border="1">
		<xsl:for-each select="$root[$filterattr=$filter]/*">
			<xsl:call-template name="children">
				<xsl:with-param name="list" select="."/>
				<xsl:with-param name="tree" select="$rootstring"/>
			</xsl:call-template>
		</xsl:for-each>
		</table>
		</form>	
		</body>
	</html>
</xsl:template>

<xsl:template name="children">
.
.
.

</xsl:template>

-- 
Uwe


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


Current Thread