xsl-list
[Top] [All Lists]

Re: [xsl] how to keep context when copying

2009-08-18 09:57:28
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/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>