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

Why does this work?

Subject: Why does this work?
From: "Schmitt, Christian" <Christian.Schmitt@xxxxxxxxxxxxxxxxx>
Date: Mon, 7 Aug 2000 18:27:28 +0200
christian schmitt
Hi,
I have this XML data:

<rowset>
 <row>
  <customer>1</customer>
  <account>11</account>
 </row>
 <row>
  <customer>1</customer>
  <account>22</account>
 </row>
 <row>
  <customer>2</customer>
  <account>33</account>
 </row>
  <customer>2</customer>
  <account>44</account>
 </row>
</rowset>

I want to get output like this:

<table>
 <tr>
  <td>1</td>
  <td>11</td>
 </tr>
 <tr>
  <td>&nbsp;</td>
  <td>22</td>
 </tr>
 <tr>
  <td>2</td>
  <td>33</td>
 </tr>
 <tr>
  <td>&nbsp;</td>
  <td>44</td>
 </tr>
</table>

I solved it with the following template (this assumes that the data is
ordered by customer):

<xsl:template match="row">
 <xsl:choose>
  <xsl:when test="customer = preceding::row[position()=1]/customer">
   <td>&nbsp;</td>
  </xsl:when>
  <xsl:otherwise>
   <td><xsl:value-of select="customer"/>
  </xsl:otherwise>
 </xsl:choose>
 <td><xsl:value-of select="account"/></td>
</xsl:template>

Now I'm glad it works, but for some peace of mind I would like to know why 
<xsl:when test="customer = preceding::row[position()=1]/customer"> 
behaves as it does?


Thanks in advance,
Christian Schmitt


 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.