I tried this:
data.MAIN.Tabelle1.Kopfzeile_First.Kopf_Main.Kopf_Main_1::ready:layout - (JavaScript, client)
page = xfa.layout.page(this);
if (page == 1 ) {
xfa.host.messageBox("First " + page.toString());
}
else {
xfa.host.messageBox("Hide " + page.toString());
data.MAIN.Tabelle1.Kopfzeile_First.Kopf_Main.Kopf_Main_1.presence = "hidden";
}
Result with 3 Pages is:
First Page: Instead of Kopf_Main_1 there is an empty space (as i would expect using invisible)
Page 2 & 3: Kopf_Main_1 is shown.
I can see 3 Popups 1,2,3 as expected.
Kopf_Main_1 is a Table.
Whats wrong here?
Regards
Daniel