Re: [xsl] following-sibling problem

Subject: Re: [xsl] following-sibling problem
From: Bruce D'Arcus <bdarcus@xxxxxxxxxxxxx>
Date: Tue, 2 Nov 2004 11:02:15 -0500
On Nov 2, 2004, at 10:46 AM, Bruce D'Arcus wrote:

<xsl:if test="@level &lt; following-sibling::bullet[@level][1]">

OK, I figured it out. Joe was on the right track; there were just a few minor errors in the above expression (missing namespace prefix, and incorrect conditional statement). It should be:


<xsl:if test="@level &lt; following-sibling::key:bullet[1]/@level">

Bruce

Current Thread