TextArea input type

Contents

A plain text, multi-line input field.

Usage

<input name="mytextarea" type="TextArea">
  <label>My TextArea</label>
  <default>Default text goes here</default>  (1)
  <config>
    <max-length>42</max-length>  (2)
    <show-counter>true</show-counter>  (3)
  </config>
</input>
1 default specifies the default string for the TextArea
2 max-length specifies the maximum allowed number of characters (default: unlimited)
3 show-counter specifies whether text length counter should be shown (default: hidden)
Contents of TextArea support browser based spellcheckers in the same way as described for TextLine.

Contents

Contents