OpenWGA 7.10 - WebTML reference

WebTML tags

<tml:caseelse>

Description :
Can be used within <tml:select>. The body of this tag is evaluated if none of the case conditions matches.
Derived from: Only available in the following parent tags: Attributes:
show inherited attributes ...
Name Value(s) Purpose

Details:
If the contents of the <tml:caseelse> tag is not rendered because any earlier condition of a <tml:case> was true then it will also not write WebTML variables that may have been specified by any variable-writing attributes on it like var, pvar, sessionvar etc.
Examples:
<tml:select>
    <tml:case isempty="headline">
        No headline defined
    </tml:case>
    <tml:caseelse>
        Headline: <tml:item name="headline"/>
    </tml:caseelse>
</tml:select>