RE: simple:xsl

Subject: RE: simple:xsl
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Tue, 18 Apr 2000 11:20:20 +0100
> I have written XSL like This
> ---------------------------------------------------
> 
>     <xsl:choose>
> 	<xsl:when test="Party[@stdValue='Supply']">
> 	<xsl:apply-templates select="Party">
> 	</xsl:when>
>    </xsl:choose>

This applies the Party template to all child <Party>s provided any one of
them has @stdValue='Supply'.

I suspect you don't need the <xsl:choose> here at all, just write

<xsl:apply-templates select="Party[@stdValue='Supply']">

But I'm guessing as to your intentions.

Mike Kay


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread