Subject: RE: simple:xsl
From: "LeninBabuAgeer" <lenin@xxxxxxxxxxx>
Date: Tue, 18 Apr 2000 13:23:01 +0200
|
Thank u Mike
It is working
Thanks & Regards
Lenin
-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxx]On Behalf Of Kay Michael
Sent: den 18 april 2000 12:20
To: 'xsl-list@xxxxxxxxxxxxxxxx'
Subject: RE: simple:xsl
> 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
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|