Re: Template Select using a param

Subject: Re: Template Select using a param
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 9 Mar 2000 13:17:35 GMT
> I had hoped to use:
> <xsl:value-of select="<xsl:value-of select="$path"/>"/>

well that wouldn't even reach the xsl system as it is not well formed
XML and would be rejected by the XMl parser.

You could try

<xsl:value-of select="{$path}"/>"

{} syntax being the replacement for value-of in attributes.

But it doesn't work as value-of (or {} ) return a _string_ not an
expression.

saxon has an extension function to evaluate an expression
as a string, but do you need that here?

why can't you make the parameter the node list selected rather than the
path for selecting it:

<xsl:param name="path" select="
	/test/ROWSET/ROW[@*[name(.)=current()/@id]]/*[name(.)=current()]"/>

(or something like that)

<xsl:value-of select="$path"/>

David


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


Current Thread