I have a multipage form with 18 differant signature fields. I need to initialize the form with Page 1 hidden and then after signing a certain field, that page becomes visible. My code is as follows:
PostSign for field form1.RCP_Form_Page1.Block_28.Suppliers_Signature is:
form1.ProcurementLetter_Page1.presence = "visible"
Initialize on field form1.ProcurementLetter_Page1 is:
if (form1.RCP_Form_Page1.Block_28.Suppliers_Signature == null) then
form1.ProcurementLetter_Page1.presence = "hidden"
endif
The above code works until you close and reopen the form. When reopening, it defaults back a null condition because null in this case doesn't work. I have even tried adding ".rawValue" at the end of "Suppliers_Signature" and that doesn't resolve it.
I think the root question is, how do I test the if statement to show a true condition of whether or not the signature field is signed?
Thanks for all that reply!
Mallard27