OpenWGA 7.0 - WebTML reference

WebTML tags

<tml:then>

Description :
Renders its content if the condition is of the surrounding <tml:if> tag is "true".
Derived from: Only available in the following parent tags: Attributes:
show inherited attributes ...
Name Value(s) Purpose

Examples:

A simple if/then/else structure:

<tml:if condition="...">
    <tml:then>
        do something ...
    </tml:then>
    <tml:else>
        do something else
    </tml:else>
</tml:if>