Re: [xsl] Ignoring a duplicate

Subject: Re: [xsl] Ignoring a duplicate
From: "Mark" <mark@xxxxxxxxxxxx>
Date: Sat, 8 Sep 2012 04:40:58 -0700
Martin,
Thanks! I did not realize that eq was for primitives. The deep-equal worked fine.
Mark


-----Original Message----- From: Martin Honnen
Sent: Saturday, September 08, 2012 4:19 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Ignoring a duplicate


Mark wrote:
I cannot get the choice to work: it does not copy either <Item> and if I


       <xsl:when test=" preceding-sibling::Item[1] eq ."/> <!-- Ignore
the second (and further) identical sequential Items -->

The "eq" operator compares primitive values, it looks as if you want <xsl:when test="deep-equal(preceding-sibling::Item[1], .)">



--

Martin Honnen --- MVP Data Platform Development
http://msmvps.com/blogs/martin_honnen/

Current Thread