Re: [xsl] Translate then sort

Subject: Re: [xsl] Translate then sort
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 18 Jan 2008 14:54:09 GMT
your problem statement isn't that clear, and you haven't posted a
runnable xslt file (just a partial browser view with - coming from
javacript folding display, I'd guess)
but if you want to combine your three for-each's into one sort just do
one for-each:

Not
      <xsl:for-each select="record[*[name() = $searchfield][contains(., $ProperText)]]">
    <xsl:sort select="*[name()=$sortby]" order="ascending" />
    <xsl:call-template name="resulttable"/>
   </xsl:for-each>
      <xsl:for-each select="record[*[name() = $searchfield][contains(., $UCASETEXT)]]">
    <xsl:sort select="*[name()=$sortby]" order="ascending" />
    <xsl:call-template name="resulttable"/>
   </xsl:for-each>
      <xsl:for-each select="record[*[name() = $searchfield][contains(., $lcasetext)]]">
    <xsl:sort select="*[name()=$sortby]" order="ascending" />
    <xsl:call-template name="resulttable"/>
    </xsl:for-each>


this:

      <xsl:for-each select="record[*[name() = $searchfield]
 [contains(., $ProperText) or contains(., $UCASETEXT) or contains(., $lcasetext)]
 ]">
    <xsl:sort select="*[name()=$sortby]" order="ascending" />
    <xsl:call-template name="resulttable"/>
   </xsl:for-each>


David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

Current Thread