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

RE: Record count

Subject: RE: Record count
From: cknell@xxxxxxxxxx
Date: Thu, 08 Nov 2007 15:12:47 -0500
RE:  Record count
I suggest that you have only one template that matches "/". Then you can create the variable in that template and call or apply all other templates within that single outer template. If you create the variables in that context, then they will be available throughout that template.

<xsl:template match="/">
 <xsl:variable name="record_count" select="count(Records/Record)"/>
  HEADER
  <xsl:apply-templates select="Records/Record"/>
  TRAILER
  <xsl:value-of select="$record_count"/>
</xsl:template>

<xsl:template match="Record">

</xsl:template>

-- 
Charles Knell
cknell@xxxxxxxxxx - email



-----Original Message-----
From:     Waqar Ali <waqarali_pk@xxxxxxxxxxx>
Sent:     Thu, 08 Nov 2007 14:42:23 -0500
To:       xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject:   Record count

Hello:

I need to print the number of records I looped thru in my for-each loop in 
the TRAILER record. I guess last() may do but variables dont seem to work 
out of the template scope. Please see the example below and I'll be greatful 
if you can suggest a solution:

  <xsl:template name="Header" match="/">
    <xsl:text>HEADER</xsl:text>
  </xsl:template>

  <xsl:template name="Detail" match="/">
    <xsl:for-each select="Records/Record">
      <xsl:variable name="record_count" select="last()"/>
    </xsl:for-each>
  </xsl:template>

  <xsl:template name="Trailer" match="/">
    <xsl:text>TRAILER</xsl:text>
    <xsl:value-of select="$record_count"/>
  </xsl:template>

  <xsl:template match ="/">
    <xsl:call-template name="Header"/>
    <xsl:call-template name="Detail"/>
    <xsl:call-template name="Trailer"/>
  </xsl:template>

Thanks.
-Waqar

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.