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]
Other format: [Raw text]

Re: Borders on row groups



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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]