xsl-list
[Top] [All Lists]

AW: using variable in order attribute of xsl:sort

2003-07-26 07:27:04
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(_at_)lists(_dot_)mulberrytech(_dot_)com
Betreff:        [xsl] 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



<Prev in Thread] Current Thread [Next in Thread>
  • AW: using variable in order attribute of xsl:sort, Markus Abt <=