This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: using parameters in filters?


Hi Mattias,

> ...and of course you couldn't set the order attribute of the sort
> element to a param either, go figure

Actually, you can - you just have to use an attribute value template.
So if you do:

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

then that should give you what you want.  All the attributes on
xsl:sort, aside from 'select', take attribute value templates so that
you can set using parameters/variables.

But yes, until we have an evaluate() function of some sort then it's
fairly difficult to dynamically select *what* the sort sorts on.
             
I hope that helps,

Jeni

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



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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]