xsl-list
[Top] [All Lists]

Re: [xsl] No of Times Named Template called

2008-03-13 11:28:23
Senthilkumaravelan K wrote:

<xsl:variable name="result">
     <xsl:for-each select="report/result">
<xsl:if test="normalize-space(resp/fault)=normalize-space(exp_resp/fault)">
        <xsl:call-template name="STATUS_DETECTION">
           <xsl:with-param name="my-param" select="S" />

What do you want to pass here as the parameter value? If you want to pass the string with the character 'S' then you need
  <xsl:with-param name="my-param" select="'S'"/>

--

        Martin Honnen
        http://JavaScript.FAQTs.com/

--~------------------------------------------------------------------
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>
--~--