Hi,
i have a field in the masterpage that i need to hide on some particular pages of a pdf form.
the scope is to hide the field called "phone" in an empty pages named "BlankPage"
this is my PDF structure:
- form1
- (Master Pages)
- MASTER (with the field that i need nto hide: "phone")
- Page1
- BlankPage1
- Page2
- BlankPage2
- ...
in the MSF1701.#pageSet[0].MASTER::ready:layout i put something like this but i was unable to make it works:
if (xfa.layout.subform.name == "BlankPage") {
xfa.resolveNode("phone").presence = "invisible";
}
else {
xfa.resolveNode("phone").presence = "visible";
}
.. i need this kind of solution, please don't tell me to copy "phone" field on every page and calculate the value from the master page
thanks