Re: [xsl] Predicates using current node-set

Subject: Re: [xsl] Predicates using current node-set
From: Oleg Tkachenko <olegt@xxxxxxxxxxxxx>
Date: Wed, 02 Oct 2002 12:44:08 +0200
Nordström, Jonas wrote:
I have a problem using predicate expressions where I compare an attribute in
the node-set to an attribute in the "current node-set".
You have almost solved the problem, it sounds surprisingly simple, but current node is accessible by current() function.

<xsl:if test="/payments/oldpayments/oldpayment/@payno = @Payno">
<xsl:if test="/payments/oldpayments/oldpayment/@payno = current()/@Payno">
		Ref: <xsl:value-of
select="/payments/oldpayments/oldpayment[@payno=@Payno]/@ref"/>
Ref: <xsl:value-of select="/payments/oldpayments/oldpayment[@payno=current()/@Payno]/@ref"/>

--
Oleg Tkachenko
Multiconn International, Israel


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread