[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]
Re: [xml-dev] Xsl:when - Can I pass Conditions at runtime?
- From: "Alexander Johannesen" <alexander.johannesen@gmail.com>
- Date: Thu, 1 Mar 2007 20:36:43 +1100
On 3/1/07, binu.idicula@wipro.com <binu.idicula@wipro.com> wrote:
> <xsl:param name="condition"/>
I usually use default values ;
<xsl:param name="condition" select="'no-condition'" />
> <xsl:variable name="cond" select="$condition"/>
> <xsl:variable name="val" select="$value"/>
Don't need these; use your params directly.
> <xsl:choose>
> <xsl:when test="$condition = $value">
> </xsl:when>
This is just testing strings. To test XPath, you need to use an eval
function. Look at exslt functions for this.
You probably also want to ask in any of the XSL(T) groups for more
XSLT specifics.
Regards,
Alex
--
---------------------------------------------------------------------------
Project Wrangler, SOA, Information Alchymist, UX, RESTafarian, Topic Maps
------------------------------------------ http://shelter.nu/blog/ --------
[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]