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: Sorting problem with Xalan 1.0.0




> 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

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