Object PmfBool
Description:
This object represents one form item of the type: Boolean value input item (Checkbox).
Properties and methods of this object:
Properties and methods that are common to all objects of the PmfObject type:
Events:
onEditAccept | Is triggered after the editing is finished and the edited value is saved. |
onFocus | Is triggered if the Pmf object gets or loses focus |
Example1:
Script creates one form item. It is presumed that the oForm object already exists.
JavaScriptSelect and copy to clipboard
var oBool = oForm.CreateItem("bool", "id_bool");
oBool.Value = true;