Avatar

Level 4

Still not showing all items when reopen saved dynamic form. Getting so frustrated. Below is a sample of a page that will not remain visible.

Example of one page that refuses to stay "visible".

AcctOpenProcesssubform.InvReviewCert::initialize - (JavaScript, client)
this.presence = "hidden";


Example of script for a checkbox on one of the checklist pages.

AcctOpenProcesssubform.Escrow.escInvRvw::click - (JavaScript, client)
if (this.rawValue == "1") {
  InvReviewCert.presence = "visible";
}
else {
  InvReviewCert.presence = "hidden";
 
}


Example of the script on Docready event of a checkbox on the same checklist page.

AcctOpenProcesssubform.Escrow.escInvRvw::docReady - (JavaScript, client)
if (this.rawValue == "1") {
  InvReviewCert.presence = "visible";
}
else {
  InvReviewCert.presence = "hidden";
 
}

All of the hidden pages are scripted just like above examples yet some show and some are hidden even though the checkbox is checked.
This is my first project using LC and I've got to this point based on my reading and member suggestions here.
Is this design sound or is there some other more efficient solution? Based on my reading, this should be working fine. Otheres appear to have
had success with this approach. Unsure why I am getting mixed results. I have checked and rechecked the scripts for pages that are not
remaining visible and they look OK to me. Anyone see a glaring flaw or have any ideas?

Thanks in advance!