Here you go (or at least I think this is what you are looking for),

<xsl:template name="tableCondition">
    <xsl:choose>
           <xsl:when test="count(/report/listElements/element) &gt; 0" > 
                                 i draw a table with a border in the bottom
            </xsl:when>
                <xsl:otherwise>
                                i draw the same table  but without the border 
at the bottom
                </xsl:otherwise>
    </xsl:choose>
</xsl:template>


Use the following to call it where ever you want.
<xsl:call-template name=" tableCondition " />

Your test should be fine as long it as it will give you the same result each 
time.


Marijan (Mario) Madunic
Publishing Specialist
New Flyer Industries

From: Red Light [mailto:[email protected]] 
Sent: Wednesday, March 17, 2010 9:12 AM
To: [email protected]
Subject: conditional drawning of table

Hi ,

in my xsl i have a condition:

    <xsl:choose>
           <xsl:when test="count(/report/listElements/element) &gt; 0" > 
                                 i draw a table with a border in the bottom
            </xsl:when>
                <xsl:otherwise>
                                i draw the same table  but without the border 
at the bottom
                </xsl:otherwise>
    </xsl:choose>

well that's easy ; there is no problem there ; just the table is consequent  
and i have 8 table in pdf and don't want to duplicate the code.

anyway to do this in an better way ?
and thanks


--------------------------------------------------------------------
Please consider the environment before printing this e-mail.

CONFIDENTIALITY STATEMENT: This communication (and  any and all information or 
material transmitted with this communication) is confidential, may be 
privileged and is intended only for the use of the intended recipient. If you 
are not the intended recipient, any review, retransmission, circulation, 
distribution, reproduction, conversion to hard copy, copying or other use of 
this communication, information or material is strictly prohibited and may be 
illegal. If you received this communication in error or if it is forwarded to 
you without the express authorization of New Flyer, please notify us 
immediately by telephone or by return email and permanently delete the 
communication, information and material from any computer, disk drive, diskette 
or other storage device or media. Thank you.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to