Re: [xsl] Set <xsl:sort> attributes with stylesheet parameters

Subject: Re: [xsl] Set <xsl:sort> attributes with stylesheet parameters
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Thu, 30 Oct 2003 10:29:04 +0000
Hi Richard,

> Why does the following code:
>
> <xsl:sort select="*[local-name()=$sort-by]" order="$sort-order" />
>
> not sort in the order specified by the value $sort-order?

Because you've forgotten to use an attribute value template ({}s) to
indicate that the sort order is the value of the $sort-order variable,
rather than the literal string "$sort-order". Try:

  <xsl:sort select="*[local-name() = $sort-by]"
            order="{$sort-order}" />

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread