RE: Examples of XSLT/XPath

Subject: RE: Examples of XSLT/XPath
From: Mike Brown <mbrown@xxxxxxxxxxxxx>
Date: Tue, 7 Sep 1999 19:09:43 -0600
I said:
        <xsl:element name="grandTotal" select="sum(/doc/num)"/>

This was rather dumb of me. I can't have a select attribute on an
xsl:element.

I meant to say:
        <xsl:element name="grandTotal">
            <xsl:value-of select="sum(/doc/num)"/>
        </xsl:element>

Although the other example,
        <grandTotal><xsl:value-of select="sum(/doc/num)"/></grandTotal>
is probably the better of the two.

Sorry about that.


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


Current Thread