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

Re: XSL Decending Order Query

Subject: Re: XSL Decending Order Query
From: Trevor Nash <tcn@xxxxxxxxxxxxx>
Date: Sun, 03 Nov 2002 16:57:10 +0000
xsl sort decending
>My query is that of a basic one, but with trying to many times, i have 
>failed in getting my xml data churned out in descending order, rather than 
>ascending, which is the de facto standard.
>
>     <xsl:for-each select="archive/news">
>     <xsl:sort select="archive/news" order="descending">

The 'select' attribute specifies the key on which to sort, as an XPath
expression to be evaluated in the context of each selected node.
Given a 'news' element, 'archive/news' will always result in nothing,
because 'news' elements do not have 'archive' elements as children.
So the sort comes out in document order.

select="date" might do what you want, providing your dates are in
year-month-day format such as "2002/11/03".

If you simply want reverse document order, then select="position()"
data-type="number" will do the trick.

(in both cases, you still want order="descending").

Trevor Nash
--
Traditional training & distance learning,
Consultancy by email

Melvaig Software Engineering Limited
voice:     +44 (0) 1445 771 271 
email:     tcn@xxxxxxxxxxxxx

 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.