xsl-list
[Top] [All Lists]

Re: Setting Sort From Variable

2003-07-02 07:57:20


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



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