Re: [xsl] using variable in order attribute of xsl:sort

Subject: Re: [xsl] using variable in order attribute of xsl:sort
From: Mukul Gandhi <mukulw3@xxxxxxxxx>
Date: Fri, 25 Jul 2003 20:38:02 -0700 (PDT)
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@xxxxxxxxx> 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


Current Thread