Constructor
# new DuForm()
Properties:
Name | Type | Description |
---|---|---|
labels |
Group
|
The left vertical group |
buttons |
Group
|
The right vertical group |
Methods
# static addField(label, type, valueopt, helpTipopt) → {Array.<ScriptUI>}
Adds a field to the form
example: form.addField('Composition:','dropdownlist',['Composition1','Composition2'],'Select a composition')
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
label |
string
|
The label text. | |
type |
string
|
The type of ScriptUI object to add (like 'button','edittext', etc.). | |
value |
object
|
<optional> |
The default value or content of the field added, depends on the type. |
helpTip |
string
|
<optional> |
The helpTip of the form control. |
An array with at 0 the StaticText label, and at 1 the ScriptUI object of the type type, added to the form
Array.<ScriptUI>