Re: [xsl] Text Sort Problem

Subject: Re: [xsl] Text Sort Problem
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 24 Aug 2005 23:25:04 +0100
> I have a similar problem (with data-type=number) a short time ago ... but 
> the solution at that time doesnt work here for this current problem.

the solution I posted (negating the sort key) doesn't work for non
numeric keys, but the solution Mike posted (which was probably more
sensible anyway) does work here. Just have an initial xsl:sort that is
select="boolean(my_text)"
as that will sort everything as either "true" or "false" depending on
whether my_text selects any nodes. so you can then specify ascending or
descending to control whether the empty case ("false") sorts before or
after the non-empty case ("true")

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread