Re: [xsl] Setting Sort From Variable

Subject: Re: [xsl] Setting Sort From Variable
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 2 Jul 2003 15:57:20 +0100

> select={$orderBy}"

select attributes in XSLT _always_ take Xpath expressions and Xpath
expressions don't have {} (unless they are part of a string)

You want

select="$orderBy"

But actually you don't want that as there is no point in using 
the same sort key for every item as then there can be no sorting.

Looking at your later code I think you want

<xsl:sort select="@forename[$filterOrderBy = 'forename']|
                  @surname[not($filterOrderBy = 'forename')]"/>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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


Current Thread