xsl-list
[Top] [All Lists]

Re: sorting issue

2005-06-30 01:37:02

    <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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>