[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Borders on row groups


Subject: Re: [xsl] Borders on row groups
From: Joerg Heinicke <joerg.heinicke@xxxxxx>
Date: Thu, 06 Jun 2002 21:09:05 +0200


A row group is a <tbody>. The idea is therefore to have a border-bottom on
<td> elements in the last <tr> in each <tbody>. I tried this:

  <!-- Table cell -->
  <xsl:template match="td">
    <fo:table-cell>
      <xsl:if test="parent::tr[position()=last()]">

The predicate is true for all parents - that's your problem. position() is "relative" to the selected nodes. I.e. with parent::tr you select the one parent node with name tr and this is always the last of the selected nodes too. What you want is


<xsl:if test="not(parent::tr/following-sibling::tr)">

Regards,

Joerg

        <xsl:attribute name="border-bottom">0.5pt solid black</xsl:attribute>
      </xsl:if>
      <fo:block><xsl:apply-templates/></fo:block>
    </fo:table-cell>
  </xsl:template>

The result is that I get border-bottom on every row, and I don't understand
why.

Gustaf


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread