xsl-list
[Top] [All Lists]

RE: xsl:variable question

2005-02-28 04:25:58
Hi,

I have a construction which looks as following:

<xsl:variable name="tree-structure-new-branch">
    <xsl:choose>
        <xsl:when test="not(position()=last())">
            <img width="16" height="16"
                 alt="Der Zweig geht nachher noch weiter"/>
        </xsl:when>
        <xsl:otherwise>
            <img width="16" height="16" alt="Der Zweig endet hier"/>
        </xsl:otherwise>
   </xsl:choose>
</xsl:variable>

I have traced through this piece of code, it seems to follow 
my xml tree
well. But the variable I define here is empty after leaving this xsl
structure.

Define "empty". The string value of the RTF the variable is bound to is an 
empty string, but it has content.

Are you using xsl:value-of to output the value of the variable to the result 
tree? Use xsl:copy-of if you are, as that copies the RTF to the result tree.

Cheers,

Jarno

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