OpenWGA 7.6 - WebTML reference

WebTML tags » input

<tml:input type="textarea" >

Purpose:

Provides a multi line text input field.

Description:

This creates an HTML input control of type "textarea" The HTML attributes "rows" and "cols", to control the row/column size of the textarea, should be specified in the content of the WebTML input tag, which will get injected into the generated tag.

Normally the input interprets the complete contents of the textarea as one large string value. You can however set attribute multiple to "true" to let it be interpreted as a list of text values where each text line is a single value.

Examples:

A textarea definition. The row/column size is determined as plain HTML inside the WebTML tag content:

<tml:input name="comment" type="textarea">rows="10" cols="100"</tml:input>