Michael Kay wrote:
In trying to solve a problem I have encountered another problem where
all the A/Value text are not being returned. Instead only the first
A/Value term is being returned.
My guess is that your stylesheet specifies version="1.0", which means that
xsl:value-of will do the "1.0 thing" and output only the first item in the
selected sequence.
Yeah your're right. My xsl:stylesheet version is indeed 1.0 !
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
I changed that to version 2.0 and its working perfectly now.
Thanks a lot
Rahil
--~------------------------------------------------------------------
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>
--~--