[Home] [By Thread] [By Date] [Recent Entries]
Maybe this will help. Given a declaration
<xsl:key name="d" match="div" use="title"/>
then
<xsl:value-of select="keyref('d',@ref)"/>
will do the same as
<xsl:variable name="t" expr="@ref"/>
<xsl:value-of select="//div[title=$t]"/>
(assuming a div element has one title child).
James
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



