[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] if if ...


Subject: RE: [xsl] if if ...
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Tue, 29 Jan 2002 17:32:48 -0000

> I would like to sort a xml-string :
> 
>     <xsl:if test="$sortering='Hyperlink'">
>        <xsl:apply-templates>
>           <xsl:sort order="ascending" select=".//hyperlink"/>
>        </xsl:apply-templates>
>     </xsl:if>
>    
>      <xsl:if test="$sortering='Language'">
>        <xsl:apply-templates>
>           <xsl:sort order="ascending" select=".//language"/>
>        </xsl:apply-templates>
>     </xsl:if>
> 
>     etc....
> 
> Now a second parameters comes up, depending on the parametervalue, I 
> would like to set the order to descending or ascending.
> 

<xsl:sort select="*[name()=$sortering]" order="{$parameterValue}"/>

Mike Kay

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



Current Thread