[xsl] Can someone convert this function in MSXSL:script to Rhino 1.5 ??
by Martijn other posts by this author
Dec 21 2001 5:14AM messages near this date
Re: [xsl] MSXML4, key() across node-set
|
[xsl] selecting a perticular node
This allows for a nodeset put into a variable to be applied a XPath upon.
Thanks!!!
<msxsl:script implements-prefix="nodeselection" language="jscript">
<![CDATA[
function selectNodes(nsetCtxt, strExpr)
{
// Evaluating strExpr must result in a node-set (unfortunately there is
currently no evalExpr method on the MSDOM)
return nsetCtxt.nextNode().selectNodes(strExpr);
}
]]>
</msxsl:script>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|