This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Using a parameter to represent an attribute


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]