Text Area

This component represents a multi-line text field.

Configuration

For general configuration options, see General component configuration.

Specific configuration

value (string)

Value of the field. See also Binding attributes of form components

Example

textarea.json
{
  "$schema": "http://bpc.virtimo.net/forms/1/schema",
  "metaData": {
    "id": 0,
    "version": 0
  },
  "configuration": {
  },
  "components": [
    {
      "type": "container",
      "label": "Textarea Component Example",
      "components": [
        {
          "type": "textarea",
          "label": "My Textarea",
          "value": "Hello World\nnice to meet\nyou"
        },
        {
          "type": "textarea",
          "label": {
            "de": "Mehrzeiliges Textfeld",
            "en": "multi line textfield"
          }
        }
      ]
    }
  ]
}
Embedded preview

Keywords: