|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Template Select using a param
> 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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








