|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Simple newbie Q: literal as row title
As a newbie I have some XSLT working thanks to this group. I have moved to a
"named template" so that I can call template with different arguments - is
OK.
But I cannot figure out how to get a "fixed literal" as title of final
summary
row.
*************************fragment
<!-- for each unique audit name -->
<xsl:for-each select="Row[@AuditName and
generate-id(.)=generate-id(key('audits', @AuditName))]">
<xsl:call-template name="one-row">
<xsl:with-param name="AuditN" select="@AuditName"/>
<xsl:with-param name="findings" select="key('audits', @AuditName)"/>
</xsl:call-template>
</xsl:for-each>
<!-- for all audits -->
<xsl:call-template name="one-row">
<xsl:with-param name="AuditN" select="TOTAL"/>
<xsl:with-param name="findings" select="/dsQueryResponse/Rows/Row"/>
</xsl:call-template>
*************************
Dick Penny
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






