xsl-list
[Top] [All Lists]

[xsl] format % issue

2008-03-27 00:56:00
Hi

What is the workaround to just print the % number ?

Fatal Error! Required item type of first argument of format-number()
is numeric; supplied value has item type xs:string


        <xsl:template name="display-percent">
                <xsl:param name="value" />
                < xsl:value-of select="format-number($value,'0.00%')" />
        </xsl:template>


<xsl:if test="$testcase=1">
        <xsl:call-template name="display-percent">
                <xsl:with-param name="value" select="$successPercent" />
        </xsl:call-template>
</xsl:if>
<xsl:if test="$testcase=3">
        <xsl:call-template name="display-percent">
                <xsl:with-param name="value" select="$successPercent" />
        </xsl:call-template>
</xsl:if >

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

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