xsl-list
[Top] [All Lists]

Re: [xsl] Translate then sort

2008-01-18 07:54:42

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. 
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>