xsl-list
[Top] [All Lists]

call-template vs apply-template

2004-06-06 21:16:51
Hi,

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



<Prev in Thread] Current Thread [Next in Thread>