Try:
<xsl:if test="count(/report/listElements/element) > 0" >
<xsl:attribute name="border-bottom">whatever</xsl:attribute>
</xsl:if>
-Lou
Red Light <[email protected]> wrote on 03/17/2010 10:12:13 AM:
> Hi ,
>
> in my xsl i have a condition:
>
> <xsl:choose>
> <xsl:when test="count(/report/listElements/element) > 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