Hiding and showing templates not working in Adobe Reader?
Hello,
I'm currently creating a PDF form that is initially 1 page and depending on what checkbox the user selects, it unhide/hide certain templates related to the checkboxes that are selected.
I'm working with adobe pro dc and everything works well on my end and i'm having no problem. When testing my PDF any users that were using adobe reader couldn't get the templates to ''unhide/spawn'' on pages after page 1 like it works when I test it with Adobe Pro DC.
If it helps I'm using this form of code to enable that function with adobe pro dc:
if (this.getField("Checkbox1").value == "Yes") {
this.getTemplate("template1").hidden = false;
this.getTemplate("template2").hidden = false;
}
Is there a reason i'm missing to why the function of hiding/unhiding doesn't work in adobe reader?
