Re: [xsl] how to keep context when copying

Subject: Re: [xsl] how to keep context when copying
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Tue, 18 Aug 2009 15:56:52 +0200
Andy Chambers wrote:

<xsl:function name="fdx:GetDef">
  <xsl:param name="ref"/>
  <xsl:copy-of select="key('keyItems', $ref/@OID)"/>
</xsl:function>

My problem is that the nodes returned by this function lack ancestor
info that would be useful
in downstream processing of the node.  Is there a way that I can
rewrite the function to return
a node that allows me to get at the node's ancestors for example.

<xsl:sequence select="key('keyItems', $ref/@OID)"/> instead of the copy-of should do.

--

	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/

Current Thread