Question
hide and show form field in page 2 based on a checked box in page 1
I am trying to have a form field show/hide on 'page 2' when a check box in 'page 1' is checked. Below will only work if on the same page - I have tested with multiple other fields
if (event.target.value === "Off") {
this.getField("LOC ZIP").display = display.hidden;
} else {
this.getField("LOC ZIP").display = display.visible;
}
HELP PLEASE
