[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] Selecting lots of nodes with lots of criteria
Subject: Re: [xsl] Selecting lots of nodes with lots of criteria
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Thu, 02 Sep 2010 17:38:02 +0200
|
Fabien Tillier wrote:
select="//Row[NUMERO = (1, 2, 3, 4, 5, 6, 7, 8)]"
is working !!!! (and a lot more faster...)
If speed matters you could of course define a key
<xsl:key name="k1" match="Row" use="NUMERO"/>
and then use
select="key('k1', (1, 2, 3, 4, 5, 6, 7, 8))"
--
Martin Honnen
http://msmvps.com/blogs/martin_honnen/
|