[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Different Colors for Alternating Rows

Subject: RE: Different Colors for Alternating Rows
From: Américo Albuquerque <melinor@xxxxxxx>
Date: Fri, 27 Jun 2003 16:47:54 +0100
26 different colors
Hi

> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx 
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of 
> Schwartz, Rechell R, ALABS
> Sent: Thursday, June 26, 2003 4:08 PM
> To: Schwartz, Rechell R, ALABS; xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: RE:  Different Colors for Alternating Rows
> 
> 
> Before I throw in the towel on this one, I tried my own 
> approach, which I thought should work, but didn't. Any 
> insights would be appreciated. 

Try this, it worked with the example provided

  <xsl:template match="node()|@*">
    <!--identity transform-->
    <xsl:copy>
      <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="table">
    <xsl:copy>
      <xsl:apply-templates mode="oddeven" select="tr[td[not(a or
@class)]]"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="tr" mode="oddeven">
    <xsl:variable name="pos" select="position() mod 2"/>
    <!-- the non selected nodes are precessed by the identity template and
are selected here. -->
    <xsl:apply-templates select="preceding-sibling::tr[td[a or
@class]][generate-id(following-sibling::tr[td[not(a or
@class)]])=generate-id(current())]"/>
    <xsl:copy>
      <!-- you could use xsl:choose if you want, I use a boolean test to set
the correct mode -->
      <xsl:apply-templates mode="odd" select="node()[$pos=1]"/>
      <xsl:apply-templates mode="even" select="node()[$pos=0]"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="td" mode="odd">
    <xsl:copy>
      <xsl:apply-templates select="@*"/>
      <xsl:attribute name="class">oddMedium</xsl:attribute>
      <xsl:apply-templates/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="td" mode="even">
    <xsl:copy>
      <xsl:apply-templates select="@*"/>
      <xsl:attribute name="class">evenMedium</xsl:attribute>
      <xsl:apply-templates/>
    </xsl:copy>
  </xsl:template>


Hope this helps you
(...)



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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.