xsl-list
[Top] [All Lists]

RE: FW: include and key

2004-11-17 08:09:37
It's nothing to do with namespaces - it has to do with which document (tree)
you are searching.

Is there a way to force the current node for the key to be on 
the 'data'
document ?

In XSLT 1.0 the usual way is

<xsl:for-each select="$data">
  <xsl:value-of select="key(....

where $data is a global variable referring to the root of the "data"
document.

It's easier in 2.0, you can write

   $data/key('k', value)

or

   key('k', value, $data)

Michael Kay
http://www.saxonica.com/


--~------------------------------------------------------------------
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>