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

Re: find the correct rows to apply appropriate templat

Subject: Re: find the correct rows to apply appropriate templates
From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Date: Mon, 4 Jun 2001 21:35:09 -0700 (PDT)
 Re: find the correct rows to apply appropriate templat
Hi Xiaocun,

The following stylesheet demonstrates how to find what you call the row number of
the header rows:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="text"/>

  <xsl:variable name="firstRowPos" select="1" />

  <xsl:variable name="secndRowPos"
  select="count(book/sheet/range/row
                   [cell[1] = '*SupplierOrganizationCode']
                   /preceding-sibling::row)
           + 1" />

  <xsl:variable name="thirdRowPos"
  select="count(book/sheet/range/row
                   [cell[1] = 'EmailAddress']
                   /preceding-sibling::row)
           + 1" />

  <xsl:template match="/">
     <xsl:value-of select="concat('secndRowPos: ', $secndRowPos, '&#xA;',
                                  'thirdRowPos: ', $thirdRowPos)"/>
  </xsl:template>
</xsl:stylesheet>


The result is:

secndRowPos: 5
thirdRowPos: 7

Hope this helped.

Cheers,
Dimitre Novatchev.
P.S. I had to guees and add a book, sheet, and range node containing your sample xml
data.
Xiaocun Xu wrote:

Hi,

  I still have a problem trying to convert the generic
XML (generated from spreadsheet, attached at the end
of this message) to the specific XML I needed.
  The structure of the generic XML has 4 sections,
each section is consisted of a header row and (1 or
more) detail rows.  For each of those sections, I need
to apply a different template.
  The problem, how to find the starting and ending row
of each of the sections, and therefore apply the
appropriate templates to those rows?


__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

 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.