OpenWGA 7.5 - WebTML reference
WebTML tags » include<tml:include o_option ="value">
Purpose:
Shorthand for defining 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 "o_". The value of the attribute is according to the value of the option.
These options have scope ="global" and there values are always of type text. To define options of other value types use the full definition form with tag <tml:option>.
Simply use the name of the option you want to define and add the prefix "o_". The value of the attribute is according to the value of the option.
These options have scope ="global" 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:
can be written in this short from:
<tml:include ref="mymod">
<tml:option name="type">main</tml:option>
</tml:include>
can be written in this short from:
<tml:include ref="mymod" o_type="main"/>