[xsl] Re: Using a parameter to represent an attribute

Subject: [xsl] Re: Using a parameter to represent an attribute
From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Date: Fri, 16 Aug 2002 22:59:51 -0700 (PDT)
I showed a solution to the original problem, but introduced another
one:

> Use:
> 
> 
> <xsl:for-each select="//brpfields/record[@*[name()=$param1] >'0']">
>   <xsl:sort data-type="number" select="@*[name()=$param1]"/>
>   ..........
> </xsl:for-each>
> 
> 
> I find the following a little bit simpler:
> 
> <xsl:for-each select="//brpfields/record/@*[name()=$param1][. >'0']">
>   <xsl:sort data-type="number" select="."/>
>   ..........
> </xsl:for-each>


Of course, they are not the same! I was still half asleep this
morning... :(




=====
Cheers,

Dimitre Novatchev.
http://fxsl.sourceforge.net/ -- the home of FXSL

__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread