Skip to content

Workflow Checkbox field

The Checkbox field is best used to represent boolean data.

Attribute Description Required
label The text shown as a label in the user interface. true
name Unique field identifier.
Two fields cannot have the same name within the same task definition. The name must be unique.
true
value Specifies a default value for this component.
The allowed values are true and false.
false
width The width of the HTML element.
In the case of KCenter, the UI must use width values based on percentages; for example:
- width=“50%” will work.
- width=“100px” will be ignored in the KCenter UI.
false
description General description. false
readonly When true, the field is not editable in the user interface. Default is false. false
data When present, an identifier is used to dynamically load the checkbox value (e.g., true or false). false
visible This attribute only makes sense when used in conjunction with an object mapped in the data attribute; the visible value of the object mapped in data is assigned to the form field, causing it to be shown or hidden (the most common use is to hide it). The default value of visible is true. 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="checkbox test">
<checkbox label="Checkbox label" name="checkbox" />
</workflow-form>
</workflow-forms>