XML Editor
Sign up for a WebBoard account Sign Up Keyword Search Search More Options... Options
Chat Rooms Chat Help Help News News Log in to WebBoard Log in Not Logged in
Conferences Close Tree View
+ Stylus Studio Feature Requests (1192)
+ Stylus Studio Technical Forum (14621)
+ Website Feedback (249)
- XSLT Help and Discussion (7625)
-> + Use of before and after string (3) Sticky Topic
-> - How do I substitute element ty... (1)
-> + How does one add working days ... (4)
-> - Help, I have existing XLT and... (1)
-> + Need help on XSLT issue - (2)
-> + EDI to XML Conversion (7)
-> - XML To JSON Conversion using X... (1)
-> + Formatting Paragraphs to same ... (2)
-> - Grouping of records (1)
-> + Problems with xsd 1.1 (4)
-> + XML to HL7 mapping (3)
-> + XSLT 3 and Iterate (2)
-> + XSL-FO to PDF preview (3)
-> + java.lang.RuntimeException: Er... (2)
-> + Create Acroforms with Stylus X... (2)
-> + How to change XSLT parameter s... (3)
-> + how to change format of the da... (2)
-> + Search "Next 8 Results " doesn... (2)
-> - Support for Git (1)
-> + newbee (8)
-- [1-20] [21-40] [41-60] Next
+ XQuery Help and Discussion (2017)
+ Stylus Studio FAQs (159)
+ Stylus Studio Code Samples & Utilities (364)
+ Stylus Studio Announcements (113)
Topic  
Postnext
Mahesh BaralSubject: Selective Add using XSLT recursion
Author: Mahesh Baral
Date: 06 May 2009 04:40 PM
I need to add only selective values of an element in a recursive add template. For e.g:

<Component>
<Type>Principal</Type>
<Amount>49.95></Amount>
</Component>
<Component>
<Type>Shipping</Type>
<Amount>5.95</Amount>
</Component>
<Component>
<Type>Shipping</Type>
<Amount>4.00</Amount>
</Component>
:
:
:

I need to get the total "Shipping" amount (here: 5.95+4.00 = 9.95)
I can add all the "Amount"s using the xsl below. But I only want "Shipping"s. I would appreciate any help.


<xsl:template name="getShippingAmount">
<xsl:param name="componentList"/>
<xsl:choose>
<xsl:when test="$componentList">
<xsl:variable name="recursive_result">
<xsl:call-template name="getShippingAmount">
<xsl:with-param name="componentList" select="$componentList[position() > 1]"/>
</xsl:call-template>
</xsl:variable>
<xsl:value-of select="$componentList[1]/Price + $recursive_result"/>
</xsl:when>
<xsl:otherwise><xsl:value-of select="0"/></xsl:otherwise>
</xsl:choose>
</xsl:template>

Postnext
John BamptonSubject: Selective Add using XSLT recursion
Author: John Bampton
Date: 07 May 2009 04:51 AM
Not sure why you are using a recursive template.

I used the following input xml

<?xml version="1.0" encoding="UTF-8"?>
<root>
<Component>
<Type>Principal</Type>
<Amount>49.95</Amount>
</Component>
<Component>
<Type>Shipping</Type>
<Amount>5.95</Amount>
</Component>
<Component>
<Type>Shipping</Type>
<Amount>4.00</Amount>
</Component>
</root>

And the following XSL

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:template match="/">
<xsl:value-of select="sum(root/Component[Type = 'Shipping']/Amount)"></xsl:value-of>
</xsl:template>
</xsl:stylesheet>

To get an output of 9.95

Cheers, John Bampton.

Posttop
Mahesh BaralSubject: Selective Add using XSLT recursion
Author: Mahesh Baral
Date: 21 May 2009 10:32 AM
Yep! I was a fool.
Thanks so much!!

Can you help me with this one?
http://www.stylusstudio.com/SSDN/default.asp?action=9&read=8522&fid=48

   
Download A Free Trial of Stylus Studio 6 XML Professional Edition Today! Powered by Stylus Studio, the world's leading XML IDE for XML, XSLT, XQuery, XML Schema, DTD, XPath, WSDL, XHTML, SQL/XML, and XML Mapping!  
go

Log In Options

Site Map | Privacy Policy | Terms of Use | Trademarks
Stylus Scoop XML Newsletter:
W3C Member
Stylus Studio® and DataDirect XQuery ™are from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2016 All Rights Reserved.