InkControl
DEPRECATED use DrawingControl instead.
<div
id="mark_damage"
data-hf-control="InkControl"
data-hf-options="{
label: 'Mark damage with pen',
width: 226,
height: 270,
image: '{{HFFormPath}}/watermeter.png',
required: true,
clearButton: true,
defaultColor: '255, 33, 203, 0'
}"
></div>
FormControl Options​
image - required​
Write down the path to connect the field with your picture. The first part of the path represents a placeholder and will be changed at runtime.
How to use:
image: '{{HFFormPath}}/watermeter.png'
Type:
string
clearButton​
Defines a small button (x) on the bottom left of the picture with which the whole drawing can be deleted.
How to use:
clearButton: false
Type:
boolean
Default:
true
defaultColor​
The app default color is red (except for Signatures!). To customize it, use RGB values for the last three entries (33, 203, 0). The first value (255) always remains the same (Alpha value).
How to use:
defaultColor: '255, 33, 203, 0'
Type:
string
disabled​
Set "true" whenever the InkControl should be disabled.
How to use:
disabled: true
Type:
boolean
doNotCopy​
Set "true" whenever the field should get deleted if the Form is copied.
How to use:
doNotCopy: true
Type:
boolean
eraserButton​
Defines a small toggleable button (Eraser Icon) on the bottom left of the picture with which the latest drawing can be erased
How to use:
eraserButton: false
Type:
boolean
Default:
true
height​
Needs to be set for this control to define the height of the field. The value is defined in pixels.
How to use:
height: 280
Type:
number
label​
Define a label for your control element.
How to use:
label: 'Mark damage with pen'
Type:
string
onChanged​
Call a pre-defined JS-method to do something when the status of the control changes.
How to use:
onChanged: HFFormdefinition.Namespace.Method
Type:
function
Signature:
function(value: boolean) => void
saveTimeout​
Duration in seconds until the inkcontrol is locked and saved. Default is 5 seconds.
How to use:
saveTimeout: 10
Type:
integer