xsl-list
[Top] [All Lists]

Re: [xsl] No of Times Named Template called

2008-03-12 23:09:28
Sorry, I forgot to add a 'for' loop. The code I intented is ...

<xsl:template match="/input">
   <xsl:variable name="result">
      <xsl:for-each select="x">
         <xsl:call-template name="STATUS_DETECTION">
            <xsl:with-param name="my-param" select="." />
         </xsl:call-template>
      </xsl:for-each>
   </xsl:variable>
</xsl:template>

The rest of the code should be same.


-- 
Regards,
Mukul Gandhi

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--