Subject: RE: how to conditionally insert begnining and ending tags S EPERATELY in xsl style sheet?
From: Harry Liu <hliu@xxxxxxxxxxxxx>
Date: Mon, 8 Jan 2001 12:19:10 -0600
|
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@xxxxxxxxxxx]
Sent: Monday, January 08, 2001 11:58 AM
To: 'Harry Liu'
Subject: RE: 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@xxxxxxxxxxxxx]
> Sent: Monday, January 08, 2001 11:50 AM
> To: xsl-List (E-mail)
> Subject: 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
|