Subject: Re: Sorting problem with Xalan 1.0.0
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 4 Apr 2000 18:40:54 +0100 (BST)
|
> order="{$orderby}"/>
order is not an Attribute Value Template so you can not do that.
An early lotusxsl did I think have a bug that treated order as an AVT
but current xalan meets the spec in this regard.
you have to use
<xsl:choose>
<xsl:when test="$orderby='ascending'"><xsl:sort select=... order="ascending"/></xsl:when>
(I don't think there is any good reason for order not being an AVT, it
just isnt)
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|