This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Predicates using current node-set


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]