xsl-list
[Top] [All Lists]

Re: only two chars after a slash

2005-04-13 14:24:08
i get only text (concat(substring-be....) in browser
with:
concat( substring-before(<xsl:value-of
select="prodAmount"/>, '/'), '/',
substring(substring-after(<xsl:value-of
select="prodAmount"/>, '/'), 1, 2))
??

try <xsl:value-of select="concat(substring-before(prodAmount,
'/'),'/', substring(substring-after($x, '/'), 1, 2))

You are trying to apply functions to the xsl elements, which doesn't
work.  It just treats it as literal text and passed through to the
browser.

Jon G.

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