Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 30th, 2012, 11:59 AM
Registered User
 
Join Date: Mar 2012
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Sorting with missing attributes

I'm trying to sort the following based off of @SortOrder

<Result Code="1111111" SortOrder="1">
<Result Code="2222222" SortOrder="2">
<Result Code="3333333" SortOrder="3">
<Result Code="4444444" SortOrder="4">
<Result Code="5555555" >

The problem is, <xsl:sort data-type="number" select="@SortOrder"/> provides the following output:

5555555
1111111
2222222
3333333
4444444

Is there a way to Sort so that if the attribute doesn't exist, that value is pushed to the bottom? I know its possible if the last result looked like <Result Code="5555555" SortOrder="">, but I have no control over input data.
 
Old March 30th, 2012, 12:40 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Use @SortOrder as the second sort key, and count(@SortOrder) as the first, with order=descending.
__________________
Michael Kay
http://www.saxonica.com/
Author, XSLT 2.0 and XPath 2.0 Programmer\'s Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with missing attributes anthonym XSLT 3 November 21st, 2011 08:11 AM
Attributes smfarooq C# 4.0 aka C# 2010 General Discussion 1 October 21st, 2011 04:38 PM
Display HTML Attributes from XML Attributes rangeshram XSLT 3 March 27th, 2010 01:14 PM
restrictions on attributes kfir XML 2 May 30th, 2006 04:35 AM
Datagrid sorting by non alphabetical sorting? LLAndy VS.NET 2002/2003 1 July 15th, 2004 01:20 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.