|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Is a variable referencing a node
Hi,
Trying this again: At 11:42 AM 9/29/2008, you wrote: <xsl:variable name="foo"> <xsl:choose> <xsl:when test="$aVar='someFlag'"> <xsl:value-of select="/path/to/some/element"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="/path/to/another/element"/> </xsl:otherwise> </xsl:variable> <xsl:choose> <xsl:when test="$foo"> <xsl:value-of select="$foo"/> </xsl:when> <xsl:otherwise>--</xsl:otherwise> </xsl:choose>
In this case, $foo is a node set not an RTF, so we don't fall into the "RTF is true()" trap. Similarly, we don't need xsl:choose for deciding whether to write the "--", since if $foo doesn't exist, writing its value will write nothing. The $flagged variable is just syntax sugar to make it a bit clearer what's going on. It is bound to a Boolean. Cheers, Wendell
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






