xsl-list
[Top] [All Lists]

Re: [xsl] Fwd: xml/xslt line break

2008-07-20 05:23:57
Taly wrote:
what I need to change is something from xsl I am reading using xpath -
I called it here :txtTargetTextforchange

<xsl:value-of select="./txtTargetTextforchange" />&#160;

If you want to apply that named template to that element then use
  <xsl:call-template name="substitute">
    <xsl:with-param name="string" select="txtTargetTextforchange"/>
  </xsl:call-template>

--

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