xsl-list
[Top] [All Lists]

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

2011-12-01 07:13:23

so, you're almost there, so now you can change

<xsl:param name="page">


to



<xsl:param name="page">
<xsl:variable name="hmm">
<xsl:choose>
<xsl:when test="$page='1'">wahoo</xsl:when>
<xsl:otherwise>humbug</xsl:otherwise>
</xsl:choose>
</xsl:variable>


and change


<xsl:value-of select="$page"/>

to

<xsl:value-of select="$hmm/>


and instead of saying 1 or 2 it should say wahoo or humbug, and you have a variable depending conditionally on the global parameter page after that it's just a matter if making the right conditions and outputing the right text

David


________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________

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