[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Filtering the nodes passed to a template...

Subject: Filtering the nodes passed to a template...
From: "Callum Elliott" <c.j.elliott-96@xxxxxxxxxxxxxxxxxxx>
Date: Fri, 31 Mar 2000 10:24:31 +1100
callum elliott
Thanks for the reply Mike,

I'm still having problems though...perhaps if I explain it more cleary...

This is my XML:-

<report>
<payments>
	<payment id="..."/>
	<payment id="..."/>
</payments>
<paymentTypes>
	<paymentType paymentTypeRef="..." desc="..."/>
	<paymentType paymentTypeRef="..." desc="..."/>
</paymentTypes>
</report>

Basically, I want to

1. print out all the @paymentTypeRef and @desc only if the @paymentTypeRef
matches a payments/@id

2. if the @paymentTypeRef matches the one printed before it, I only want the
@desc displayed

...So in the end, my output will look like this

PaymentType	Desc
CASH		Cash
CCDEBTOR	Amex
		Visa
		Diners
CHEQUE	Cheque

I can do no.1 fine with the following line...

<xsl:apply-templates select="paymentType[@paymentTypeRef =
/report/payments/payment/@id]">

and in that template I use...

  <xsl:if test="@paymentTypeRef !=
../preceding-sibling::paymentType/@paymentTypeRef]">
    <xsl:value-of select="@paymentTypeRef"/>
  </xsl:if>

but this seems to reference the original XML and not the filtered XML which
is passed into the template.  So I need a way of accessing and testing
values in the filtered node set, and not the original.

Thanks again,

Callum


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.