Subject: Re: Conditional XSL Variable
From: "Andrew Welch" <andrew.j.welch@xxxxxxxxx>
Date: Thu, 20 Nov 2008 19:57:04 +0000
|
> <map:entry codeA="90434" codeB="9801" codeC="0121" />
> <xsl:value-of
> select="$lookupTable/map:table/map:entry[@codeA=$valueOfCodeA]" />
That xsl:value-of gets the string value of the map:entry, which is an
empty element so it selects nothing.
You probably want to select one of the attributes, eg add "/@codeB" on
the end of it:
$lookupTable/map:table/map:entry[@codeA=$valueOfCodeA]/@codeB
--
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/
| Current Thread |
|
Andrew Welch - 20 Nov 2008 19:58:26 -0000 <=
David Carlisle - 20 Nov 2008 20:13:51 -0000
|
|