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]

if if ...


Hi,

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.

Is there any neat way to realise this ?
So i don't have to write nested "if's" ?

Thanks in advance,
Fred.



 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]