Re: [xsl] sorting issue

Subject: Re: [xsl] sorting issue
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 30 Jun 2005 09:37:02 +0100
    <xsl:preserve-space elements="text"/>

that line isn't doing anything (preserve space is the default)

               <xsl:apply-templates 
select="document(doc/@filename)/client">

This is just selecting one node from each document
which is why each document is sorted as a whole, you want t(I think) to
select all the subclients from all documents so that is

               <xsl:apply-templates 
select="document(doc/@filename)/client/subclient">

and then sort them by title
                    <xsl:sort select="name/lname" />

(some of your subclients have a title not an name currently they'll all
sort together as "" you may want to have title|name/lname or something
I don't konw...

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