Re: [xsl] when does <xsl:when> stop searching?

Subject: Re: [xsl] when does <xsl:when> stop searching?
From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Date: Tue, 12 May 2009 10:47:25 -0700
> But what about the 'break' keyword?
>
> xsl does not have that, so does it stop automatically after the first
> match of <xsl:when>?
>
> I mean, what if there are several conditions, sort of like several elseif()

Only first in document order  <xsl:when> whose @test attribute
evaluates to true is selected for processing. If there isn't such,
then the <xsl:otherwise> (if specified) is selected for processing.

BTW, why don't you read a good book on XSLT? This would save a lot of
time, at least for the very basic questions like the ones you have
submitted in the last day or so.



--
Cheers,
Dimitre Novatchev
---------------------------------------
Truly great madness cannot be achieved without significant intelligence.
---------------------------------------
To invent, you need a good imagination and a pile of junk
-------------------------------------
Never fight an inanimate object
-------------------------------------
You've achieved success in your field when you don't know whether what
you're doing is work or play



On Tue, May 12, 2009 at 10:40 AM, Dmitri Snytkine <d.snytkine@xxxxxxxxx>
wrote:
> the <xsl:choose> when used with <xsl:when> is similar to 'switch($var){
> case:
>
>
> }
>
> But what about the 'break' keyword?
>
> xsl does not have that, so does it stop automatically after the first
> match of <xsl:when>?
>
> I mean, what if there are several conditions, sort of like several elseif()

Current Thread