Signature Object
EFSignature.getVisible()
Return the visibility of the signature as true or false
var objSignature = eform.get('Signature1');
var val = objSignature.getVisible();
alert(val);
EFSignature.isReadOnly()
Return whether the signature is read-only as true or false
var objSignature = eform.get('Signature1');
var val = objSignature.isReadOnly();
alert(val);
EFSignature.setReadOnly(true/false)
Set the signature as read-only or not
Parameters:
- isReadOnly = true/false, for set read only to true or false and disable the input
var objSignature = eform.get('Signature1');
objSignature.setReadOnly(true);
EFSignature.setVisible (isVisible,isPermenant)
Set the signature as visible or not
Parameters:
- isVisible = true/false, for set visible to true or false and disable the input
- isPermenant = Save the visible state or not. If this set to true, the visibility of the control is saved with the eform, if not that visibility control is one off only
var objSignature = eform.get('Signature1');
objSignature.setVisible(true,true);
Commenting is not enabled on this course.