|
Subject: RE: [xsl] sorting - lost in a maze From: cknell@xxxxxxxxxx Date: Fri, 11 Mar 2005 11:24:34 -0500 |
<?xml version="1.0" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" indent="yes" /> <xsl:strip-space elements="*" />
<xsl:template match="/"> <xsl:apply-templates /> </xsl:template>
<xsl:template match="fiches">
<table>
<xsl:for-each select="fiche[texte/cattouristique=$keyword]">
<xsl:sort order="descending" select="texte/fichetitre"/>
<xsl:apply-templates select="." />
</xsl:for-each>
</table>
</xsl:template> <xsl:template match="fiche">
<xsl:choose>
<xsl:when test="count(preceding-sibling::fiche) mod 2 = 0">
<tr class="even-row-color"><td><xsl:value-of select="texte/fichetitre" /></td><td><xsl:value-of select="texte/typeheberg" /></td><td>123</td><td><xsl:value-of select="region/regionnseo" /></td></tr>
</xsl:when>
<xsl:otherwise>
<tr class="odd-row-color"><td><xsl:value-of select="texte/fichetitre" /></td><td><xsl:value-of select="texte/typeheberg" /></td><td>123</td><td><xsl:value-of select="region/regionnseo" /></td></tr>
</xsl:otherwise>
</xsl:choose>
</xsl:template></xsl:stylesheet> -- Charles Knell cknell@xxxxxxxxxx - email
-----Original Message----- From: Jason Tripanier <jtrepanier@xxxxxxxxxxx> Sent: Fri, 11 Mar 2005 10:09:42 -0500 To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx Subject: [xsl] sorting - lost in a maze
for example the parameter must search "cattouristique" for "Agrotourisme" and then the records that match "Agrotourisme" are returned. Also the records returned must have alternating row colors.
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| RE: [xsl] sorting - lost in a maze, Michael Kay | Thread | RE: [xsl] sorting - lost in a maze, Touchtel |
| [xsl] Newbie issue with apply-templ, A.Little | Date | RE: [xsl] Newbie issue with apply-t, Ross, Douglas |
| Month |