<tml:element>

Description:
tml:element is an architecture that helps customers to integrate self-created tag functionalities in WebTML and to make use of them. To do so, the Java interface "de.innovationgate.wgpublisher.webtml.utils.ElementImpl" has to be implemented. The implemented class is stored either to the classpath of the application server or it is stored in the element tag as attribute "source" and can be used in the WebTML source code. Some implementations of element are supplied with WGPublisher. Please see documentation as follows.
Attributes:
General WebTML attributes are hidden -> show general attributes
Name Value(s) Version Usage

Details:
Basic structure:

<tml:element name="...">

    <tml:option name="...">...</tml:option>
    <tml:option name="...">...</tml:option>
    <tml:body>
    ...
    </tml:body>
</tml:element>
Examples:

    <tml:element name="plaintext">

      <tml:body>
        <tml:item name="body"/>
      </tml:body>
    </tml:element>

    Deletes all HTML tags from the field "body".