OpenWGA 7.9 - WebTML reference

WebTML tags

<tml:disable>

Description :
Deactivates a TML code block.
Attributes:
Name Value(s) Purpose

Details:
This is a variant of <tml:comment> and allows to deactivate a block of TML code.

Unlike <tml:comment>, <tml:disable> can be cascaded. So the following code is valid:

<tml:disable>

    ... Code ...

        <tml:disable>

            ... Code ...

        </tml:disable>

        ... Code ...

</tml:disable>


A side effect of the cascade feature is that <tml:disable> requires the body to be valid TML code.

So the following usage of <tml:disable> will raise an error:

<tml:disable>

   <tml:range>

</tml:disable>