Expand my Community achievements bar.

Guidelines for the Responsible Use of Generative AI in the Experience Cloud Community.

How to hide Header objects from showing on the second page?

Avatar

Level 1

Hi

Currently doing a form, I'm supposed to hide the Header object from appearing on the following pages after the first page. I have tried the following but it doesn't work

if(this.rawValue == "1")

{

form1.pageSet.Page1.TextField1.presence = "hidden";

}

1 Reply

Avatar

Level 10

Hi there,

you can always use xfa.layout.page(xfa.form.form1.[...]); this will tell you what page the item is...

I hope this will help