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: how to conditionally insert begnining and ending tags S EPERATELY in xsl style sheet?


Sorry did not make it clear and correctly last time.

The code I wanted to do is like follows:

<xsl:if test="variable='A'">
 	<tr>
</xsl:if>
 <td>
 	(any code)
 </td>
<xsl:if test="variable='A'"> 
 	</tr>
</xsl:if>	

This is not accepted of course.   Is there any way to acomplish this?

-----Original Message-----
From: Yao, Mingdong [mailto:Mingdong.Yao@Bestbuy.com]
Sent: Monday, January 08, 2001 11:58 AM
To: 'Harry Liu'
Subject: RE: [xsl] how to conditionally insert begnining and ending tags
S EPERATELY in xsl style sheet?


Is this what you want?

<xsl:if test="variable='A'">
	<tr><td>
		(any code)
		</td>	
	</tr>
</xsl:if>	

Hope this helps.

Don

> -----Original Message-----
> From:	Harry Liu [SMTP:hliu@power2000.com]
> Sent:	Monday, January 08, 2001 11:50 AM
> To:	xsl-List (E-mail)
> Subject:	[xsl] how to conditionally insert begnining and ending tags
> SEPERATELY  in xsl style sheet?
> 
> I want to do something in an xsl style sheet like the code shown below:
> (conditionally add a new row to a table).  But directly writing the <tr>
> or
> </tr> seperately shown in the floowing code is not accepted.
> 
> Could anybody help me out? 
> 
> Harry
> 
> <xsl:if test="variable='A'">
> 	<tr>
> <td>
> 	(any code)
> </td>
> 
> 	</tr>
> </xsl:if>	
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

 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]