|
Subject: Re: xsl:when evaluated not="" From: robin@xxxxxxxxxxx Date: Fri, 8 Sep 2000 14:43:19 +0100 |
Untested code follows:
<xsl:variable name="directory">
<xsl:eval>getDirectory(this.getAttribute('page'))</xsl:eval>
</xsl:variable>
<xsl:choose>
<xsl:when test="$directory">
<A href="{$directory}" target="new_window">
<xsl:value-of select="@text"/>
</A>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@text"/>
</xsl:otherwise>
</xsl:choose>
hth/
.robin.
On Fri, Sep 08, 2000 at 06:45:27AM -0500, Eric Taylor wrote:
> Part of my XSL looks like this:
>
> <xsl:choose>
> <xsl:when *** stuck here ***>
> <A>
> <xsl:attribute
> name="href"><xsl:eval>getDirectory(this.getAttribute('page'))</xsl:eval></xs
> l:attribute>
> <xsl:attribute name="target">new_window</xsl:attribute>
> <xsl:value-of select="@text"/>
> </A>
> </xsl:when>
> <xsl:otherwise>
> <xsl:value-of select="@text"/>
> </xsl:otherwise>
> </xsl:choose>
>
> I only want the "when" to happen if
> <xsl:eval>getDirectory(this.getAttribute('page'))</xsl:eval> returns some
> value (that is, if it returns a blank value, I want to do the "otherwise").
> I don't know the syntax for this. Thanks. Eric
>
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
--
"Do nine men interpret?" "Nine men," I nod.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| RE: when evaluated not="", Chris Bayes | Thread | Re: xsl:when evaluated not="", David Carlisle |
| Sorting Dates in XSLT, Nuri Besen | Date | RE: Matching attributes that contai, Paul_Dick |
| Month |