[
Lists Home |
Date Index |
Thread Index
]
XSLT and XPath questions would be better posted to the following list:
http://www.mulberrytech.com/xsl/xsl-list
There are a number of subscribers who would enthusiastically respond to
such questions.
There is also an *excellent* FAQ at:
http://www.dpawson.co.uk
At 2003-05-19 20:32 +0530, shadab wrote:
>I have a template,
>
><xsl:template match="purchaseOrder/items/quantity">
><xsl:element name="quant"><xsl:value-of select="current()"/></xsl:element>
></xsl:template>
Perhaps the above would be more succinctly written as:
<xsl:template match="purchaseOrder/items/quantity">
<quant><xsl:value-of select="."/></quant>
</xsl:template>
>Now the occurence of items is unbounded.I would like to get the sum of all
>the 'quantity' fields within items.
>
>By changing value-of select=sum(current()) it throws an error.Any ideas how
>i could get the sum of all 'quantity' without removing template?
Why do you say "without removing template"? If you have 100 <quantity>
children of <items> then you would get 100 reports of the total if you
calculated the sum of all items when in the item's quantity.
Perhaps you are looking for the total of all quantity grandchildren when
you are in the <purchaseOrder> element:
<xsl:template match="purchaseOrder">
<total><xsl:value-of select="sum(items/quantity)"/></total>
</xsl:template>
I wonder if perhaps you are missing a level of the hierarchy ... should you
have purchaseOrder/items/item/quantity as the levels of your
information? Is the quantity on a total of all items or on each item?
I hope this helps.
................... Ken
--
Upcoming hands-on courses:
- (XSLT/XPath and/or XSL-FO) North America: June 16-20, 2003
G. Ken Holman mailto:gkholman@CraneSoftwrights.com
Crane Softwrights Ltd. http://www.CraneSoftwrights.com/x/
Box 266, Kars, Ontario CANADA K0A-2E0 +1(613)489-0999 (F:-0995)
ISBN 0-13-065196-6 Definitive XSLT and XPath
ISBN 0-13-140374-5 Definitive XSL-FO
ISBN 1-894049-08-X Practical Transformation Using XSLT and XPath
ISBN 1-894049-11-X Practical Formatting Using XSL-FO
Male Breast Cancer Awareness http://www.CraneSoftwrights.com/x/bc
|