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]

param-value in Expression


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


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