Subject: Re: sorting based on variable and limit the results
From: Michalmas <michalmas@xxxxxxxxx>
Date: Mon, 23 Mar 2009 01:05:52 +0100
|
And the second part of question - is it possible to limit the result
to the top 10, without intermediate representation (or, just in one
XSLT script).
<xsl:if test="position() < 11">
smart...
In xslt2 you can use the content of xsl:sort rather that a select
attribute which allows a wider range of constructs. You didn't say
if you wanted xslt 1 or 2.
But you don't need a variable you could do
<xsl:key name="p" match="p" use="pp"/>
Perfectly works.
Thanks!
On Mon, Mar 23, 2009 at 12:41 AM, David Carlisle <davidc@xxxxxxxxx> wrote:
>
> And the second part of question - is it possible to limit the result
> to the top 10, without intermediate representation (or, just in one
> XSLT script).
>
>
> <xsl:if test="position() < 11">
> ....
>
> ________________________________________________________________________
> 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.
> ________________________________________________________________________
|