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]

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>
</xsl:if>	
<td>
	(any code)
</td>
...............

<xsl:if test="variable='A'">
	</tr>
</xsl:if>	


 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]