xsl-list
[Top] [All Lists]

Re: [xsl] selecting all but first node

2006-05-26 16:13:23

   <xsl:template match="persoonsgegevens[1]">
...
</xsl:template>

I would like to treat all other nodes differently...
   <xsl:template match="persoonsgegevens[?]">
...
</xsl:template>

What should i use instead of ?


Just delete the [?] the template matching match="persoonsgegevens[1]"
has a higher default priority than one matching match="persoonsgegevens"
so you don't need to explicitly exclude position 1 in the second
template. See, despite the subject line, you are looking at XSLT match
patterns, not XPath expressions (which are used in select attrbutes).
to select all but the first of something go
select="something[position()!=1]" but you don't need that here.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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