Hello,
I have Label sheet with 8 Labels on A4.
I want hide content with checkbox for individual Labels on Page.
So if I want Print only Label on Position 3 I check my checkbox by Position 3 and only this Content will be printed.
I try using Javascript for Chekcbox.change Event
if (this.rawValue == "1") {
this.resolveNode("#subformSet.Etiketa1LLL").presence = "visible";
this.resolveNode("#subformSet.Etiketa1LLL").relevant = "+print";
}
else
{
this.resolveNode("#subformSet.Etiketa1LLL").presence = "visible";
this.resolveNode("#subformSet.Etiketa1LLL").relevant = "-print";
}
But this script do not make Subform Visible (screen only). I Still see backgrounds and static text on Print
Any help.