OpenWGA 7.10 - WebTML reference

WebTML tags » include

<tml:include lo_option ="value">

Purpose:

Shorthand for defining local WebTML-Options

Description:

This is a short form to define WebTML options.

Simply use the name of the option you want to define and add the prefix "lo_". The value of the attribute is according to the value of the option.

These options have scope ="local" and there values are always of type text. To define options of other value types use the full definition form with tag <tml:option>.

Examples:

The following Code:

<tml:include ref="mymod">
    <tml:option scope="local" name="type">main</tml:option>
</tml:include>


can be written in this short from:

<tml:include ref="mymod" lo_type="main"/>