Subject: AW: using variable in order attribute of xsl:sort
From: Markus Abt <abt@xxxxxxxx>
Date: Sat, 26 Jul 2003 16:27:04 +0200
|
Hi Preeti,
you can use select="$firstValue", but it won't sort anything:
The value of the variable is the same for all nodes in your
for-each or apply-templates. In particular, the variable is not
evaluated, i.e. it cannot contain an XPath to use for the sorting.
On the other hand, order="{$ord}" would work as expected.
Note the {}.
Regards,
Markus
__________________________
Markus Abt
Comet Computer GmbH
http://www.comet.de
----------
Von: Preeti Chopra
Gesendet: Freitag, 25. Juli 2003 23:02
An: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Betreff: using variable in order attribute of xsl:sort
Hi experts
Is there any way I can use the following code
<xsl:sort select="$firstValue" order="$ord" />
firstValue and ord are the variables already defined.
Regards
Preeti
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|