xsl-list
[Top] [All Lists]

Re: Predicates using current node-set

2002-10-02 03:44:08
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[(_at_)payno=@Payno]/@ref"/>
Ref: <xsl:value-of select="/payments/oldpayments/oldpayment[(_at_)payno=current()/@Payno]/@ref"/>

--
Oleg Tkachenko
Multiconn International, Israel


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



<Prev in Thread] Current Thread [Next in Thread>