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

Re: Node with maximum attribute value

Subject: Re: Node with maximum attribute value
From: Phil Lanch <phil@xxxxxxxxxxxxxxx>
Date: Mon, 21 Feb 2000 20:04:39 +0000
xsl maximum attribute value
Richard Birkby wrote:
> 
> Maybe I didn't explain all of the problem so well.
> 
> I want to use the variable in an XPath outside of the xsl:for-each, ie in
> another scope.
> 
> The following code works, but it could hardly be called elegant.
> 
> <!-- Iterate over a descending node-set -->
> <xsl:for-each select="closing-price">
> <xsl:sort data-type="number" select="@mid" order="descending"/>
> 
> <!-- Choose only the first node (ie largest) -->
> <xsl:if test="position()=1">
> <xsl:variable name="MaxValue" select="@mid" />
> 
> <!-- Now iterate over the list again in original sort order -->
> <xsl:for-each select="closing-price">
> 
> <!-- Do Something with $MaxValue -->
> 
> </xsl:for-each>
> 
> </xsl:if>
> </xsl:for-each>

you can do that by by initializing a variable with an xsl:for-each loop
(& i don't even need to mention RTFs ...) -

<xsl:variable name="MaxValue">
  <xsl:for-each select="closing-price">
    <xsl:sort data-type="number" select="@mid" order="descending"/>
    <xsl:if test="position()=1">
      <xsl:value-of select="@mid"/>
    </xsl:if>
  </xsl:for-each>
</xsl:variable>

<xsl:for-each select="closing-price">
  ...
  <xsl:if test="@mid = $MaxValue"> ... </xsl:if>
</xsl:for-each>

-- 

cheers

phil

"I have remarked very clearly that I am often of one opinion
when I am lying down and of another when I am standing up ..."


 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.