call-template vs apply-template2004-06-06 21:16:51Hi,
I want to call template "abc" with element "def"
Here's the syntax for "call-template" and "apply-template":
<xsl:call-template name="abc"/>
<xsl:apply-templates select="def"/>
However, I dun seem to be able to combine the two above statement.
Currently as a workaround, I find myself using the below (for just 1
element).
<xsl:for-each select="def">
<xsl:call-template name="abc"/>
</xsl:for-each>
Is there a better way? How should I do it?
Regards,
Daniel
|
|
||||||||||||||||