Ir al contenido
Otras versiones

Cargando…

Workflow Separator field

Esta página aún no está disponible en tu idioma.

Draw a separator between fields.

Attribute Description Required
label The text shown as a label in user interface. true
name Unique field identifier
Two fields can’t have the same name in the same task definion. Name must be unique.
true
width The width of the HTML element. false
readonly Set field, it will not be able to be modified in user interface. By default the value is “false”. false
<?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="separator test">
<input label="Input label" name="input1" />
<separator label="Separator label" name="separator" />
<input label="Input label" name="input2" />
</workflow-form>
</workflow-forms>