RE: Conditional selection of Templates in XSL

Subject: RE: Conditional selection of Templates in XSL
From: Matthew Bentley <Matthew.bentley@xxxxxxxxxxxxxx>
Date: Fri, 25 Aug 2000 09:11:49 +1200
You can simply do this:

> <xsl:template match="TABLE">
> 	<xsl:choose>
> 		<xsl:when test="$isFile = 'true'">

			<xsl:value-of select="." />

> 		</xsl:when>
> 		<xsl:otherwise>
> 			<!-- Here I want to output the Table with all
> 				it's child nodes such as 
> <tr>,<td> etc. -->
> 		</xsl:otherwise>
> 	</xsl:choose>
> 	<xsl:apply-templates/>
> </xsl:template>
******************************************************************
Warning: This email, including any attachments, 
is for the use of the intended recipient(s) only.
Republication and redissemination, 
including posting to news groups or web pages, 
is strictly prohibited without the express prior consent of Brooker's Limited.
******************************************************************


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


Current Thread