|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Why is my xsl:param empty? (passed with xsl_with-p
Rene de Vries wrote:
>
> <xsl:template match="/">
>
your xml-param is empty because the document root comes above the root
element. So when you apply-templates from the template with match="/",
the next thing that happens is that XSLT matches your element "root"
with the built-in template, then does an implicit apply-templates -
*without* repeating your with-param - and then matches the x element.
So all you need to do to get your template working is replace
<xsl:template match="/">
with
<xsl:template match="root">
Hope this helps -
Francis.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








