xsl-list
[Top] [All Lists]

Re: using variable in order attribute of xsl:sort

2003-07-25 20:38:02
You cannot use variables like this with select
attribute of xsl:sort

You have to resort to something like
<xsl:for-each select="something/*[name() =
$firstValue]">
  <xsl:sort select="." order="{$ord}"/>
  <xsl:value-of .. (display data)
  <xsl:value-of .. (display data) 
</xsl:for-each>

Regards,
Mukul



--- Preeti Chopra <preetichopra24(_at_)yahoo(_dot_)com> wrote:
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



__________________________________
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



<Prev in Thread] Current Thread [Next in Thread>