This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Conditional selection of Templates in XSL


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]