This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Why is my xsl:param empty? (passed with xsl_with-param)


Rob,

That's not the problem. In my real XSL the with-param-select is a count()-function.
But even with the extra single-quotes you suggest, my sample doesn't work!

Greetings Rene
   { @   @ }
        ^
      \__/

"You don't need eyes to see, you need vision!"

-----Oorspronkelijk bericht-----
Van:	Rob Lugt [SMTP:roblugt@elcel.com]
Verzonden:	vrijdag 15 juni 2001 11:41
Aan:	xsl-list@lists.mulberrytech.com
Onderwerp:	Re: [xsl] Why is my xsl:param empty? (passed with xsl_with-param)

To make "8" a string literal you must enclose it in quotes.  Try this:-
<xsl:with-param name="trythis" select="'8'"/>

Regards
Rob Lugt
ElCel Technology
http://www.elcel.com/



----- Original Message -----
From: "Rene de Vries" <RdVries@PCL-HaGe.nl>
To: <xsl-list@lists.mulberrytech.com>
Sent: Friday, June 15, 2001 10:04 AM
Subject: [xsl] Why is my xsl:param empty? (passed with xsl_with-param)


> I'm playing around with xsl:with-param and xsl:param, but I cant get my
param passed. What do I do wrong?
> I expect:
>
> $trythis: 8
> $trythis: 8
>
> but I get
>
> $trythis:
> $trythis:
>
> xml:
> <root>
> <x>bla</x>
> <x>blabla</x>
> </root>
>
> xsl:
> <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
>
> <xsl:template match="/">
>
> <xsl:apply-templates>
> <xsl:with-param name="trythis" select="8"/>
> </xsl:apply-templates>
>
> </xsl:template>
>
> <xsl:template match="x">
>
> <xsl:param name="trythis"/>
>
> <p>
> $trythis: <xsl:value-of select="$trythis"/>
> </p>
>
> </xsl:template>
>
> </xsl:stylesheet>
>
> Greetings Rene
>    { @   @ }
>         ^
>       \__/
>
> "You don't need eyes to see, you need vision!"
>
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>
>
>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]