xsl-list
[Top] [All Lists]

Re: [xsl] Selecting lots of nodes with lots of criteria

2010-09-02 10:38:20
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/

--~------------------------------------------------------------------
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>
--~--