Subject: Re: attribute value test.
From: Henk Fictorie <fictorie@xxxxxxxxx>
Date: Thu, 03 Jun 1999 15:45:33 +0200
|
DPawson@xxxxxxxxxxx wrote:
>
> I'm trying to test if a nodes parent contains an attribute named 'inserted'
> with value 'yes'
>
> <xsl:choose>
> <xsl:when test="../@inserted ='yes' ">
should be something like: <xsl:when test="..[@inserted='yes']">
or: <xsl:when test=".[../@inserted='yes']">
> <xsl:attribute name="style">color: red</xsl:attribute>
> </xsl:when>
> </xsl:choose>
>
> xt keeps telling me there is an unexpected token in the line
> beginning xsl:when.
>
> Have tried numerous variants. Stuck.
>
> Can anyone help please.
>
regards Henk Fictorie
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|