Expand my Community achievements bar.

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

Text Field visible but don´t print

Avatar

Former Community Member
Hi,



I need to put a textfield visible but don´t print in designer v7, any one knows how?



Thanks,
2 Replies

Avatar

Level 5
in the prePrint event use the following JavaScript code:



this.presence = "hidden";



and use the following JavScript code in postPrint event:



this.presence = "visible";



Good lock,

SekharN.