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]

RE: Alternate bg colors for table and address summaries


Eliot,

   I just realized there was a bug in the code I suggested.
It should be:
<tr>
 <xsl:choose>
  <xsl:when test="Summary[position() mod 2 = 0]>
   <xsl:attribute name="class"/>bgcolourblack</xsl:attribute>
  </xsl:when>
  <xsl:otherwise>
   <xsl:attribute name="class"/>bgcolourwhite</xsl:attribute>
  </xsl:otherwise>
 </xsl:choose>
 <!-- all the other stuff for the row -->
</tr>
Your stylesheets would then get you the desired effect of
alternating colours for the rows. (So sorry for the
confusion, yes, this is all stylesheets...)

- Joerg





 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]