[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] referencing nodes via variables
Subject: Re: [xsl] referencing nodes via variables
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 30 Aug 2006 14:51:37 +0100
|
oops forgot to use the Key having defined it:-)
<xsl:key name="m" match="method" use="concat(@id,'/',@version)"/>
<xsl:template match="line">
<xsl:variable name="method" use="key('m',concat(@methodID,'/',@methodVer))"/>
. ^^^^^^
David
|