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

simple grouping question

Subject: simple grouping question
From: Les Howard <les@xxxxxxxxxxxxxxx>
Date: Mon, 18 Sep 2000 10:18:09 -0400
les howard
I'm new to XSLT/XPath and have what I think is a simple question that I
just can't figure out.  I'm producing an HTML table and want to suppress
the value in a particular column if the previous element in that column
had the same value.  I've been through the faq and found some examples
relating to grouping that are similar to what I want to do, but I have
been unable to get it work.

Here's a shortened up version of my XML:

<events>
  <event>
    <date>9/19/2000</date>
    <name>foo</name>
  </event>
  <event>
    <date>9/19/2000</date>
    <name>bar</name>
  </event>
  <event>
    <date>9/20/2000</date>
    <name>baz</name>
  </event>
</events>

And this is what I would like the output to look like.

<table border="1">
<tr><td>9/19/2000</td><td>foo</td></tr>
<tr><td></td><td>bar</td></tr>
<tr><td>9/20/2000</td><td>baz</td></tr>
</table>

I'm using some XSLT like the following to do the translation:

<xsl:template match="events">
    <table border="1">
      <xsl:apply-templates select="event"/>
    </table>
 </xsl:template>

<xsl:template match="event">
  <tr>
    <td>
      <xsl:value-of select="date"/>
    </td>
    <td>
      <xsl:value-of select="name"/>
    </td>
  </tr>
</xsl:template>

which works, but doesn't suppress the date column value if the value is
the same.

Any assistance you can provide in putting me on the right path would be
most appreciated.

Thanks,

Les


 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.