RE: [xsl] can a value of a parameter depends on a other value

Subject: RE: [xsl] can a value of a parameter depends on a other value
From: Roelof Wobben <rwobben@xxxxxxxxxxx>
Date: Tue, 29 Nov 2011 17:34:12 +0000
Oke,



Still one question.



Image that I also need a parameter called totalpages.



How does it work then.



Roelof



----------------------------------------
> Date: Tue, 29 Nov 2011 18:20:26 +0100
> From: Martin.Honnen@xxxxxx
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: Re: [xsl] can a value of a parameter depends on a other value
>
> Roelof Wobben wrote:
>
> > So if the month is in the variable value and the pagenumber in the
variable then it would be.
> >
> >
> >
> > <xsl:with-param name="articlesperpage">
> >
> > <xsl:choose>
> >
> > <xsl:when test=" $value eq 2005-02 and $page eq 1>/xsl:when>
> >
> > </xsl:choose>
> >
> > </xsl:with-param>
>
> Well "eq" is an XPath 2.0 operator so I am not sure why you use that now
> after telling us you use XSLT 1.0.
> But you can certainly do
> <xsl:when test="$value = '2005-02' and $page = 1">
> for the test. I don't see in your code snippet where you actually set
> the value of the param as you don't have any code inside of the
> xsl:when. And as you don't have any xsl:otherwise an xsl:if instead of
> the xsl:choose/xsl:when might suffice.
>
>
>
> --
>
> Martin Honnen --- MVP Data Platform Development
> http://msmvps.com/blogs/martin_honnen/

Current Thread