Workflow TextArea field

Prints text that can contain HTML tags.

AttributeDescriptionRequired
label

The text is shown as a label in the user interface.

true.

name

Unique field identifier

Two fields can't have the same name in the same task definition, and the name must be unique.

true.

type

Type value. Allowed types:

  • text.
  • html.
 
value

The default value for the component.

false.

width

The width of the HTML element.

In the case of KCenter, the UI must use width values based on %, for example:

  • width="50%" will work
  • width="100px" will be ignored in the KCenter UI.

false.

height

The height of the HTML element.

false.

description

General description.

false.

data

When present, it is an identifier used to load data.

false.
readonly The field will not be able to be modified in the user interface. By default, the value is "false".

false.

Child elements:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE workflow-forms PUBLIC "-//OpenKM//DTD Workflow Forms 2.6//EN"
                                "http://www.openkm.com/dtd/workflow-forms-2.6.dtd">
<workflow-forms>
  <workflow-form task="textarea test">
    <textarea label="textarea label" name="textarea" width="200px"/>
  </workflow-form>
</workflow-forms>
Table of contents [ Hide Show ]