Hi,
I have some fields in my form that i want to hide. I added in some javascript into the button-click event. When previewing in the Adobe LiveCycle Designer, the fields are hidden successfully,but when i press F8 button the fields are not able to hide.
My JavaScript is:
if(this.rawValue == null)
{
this.presence = "hidden";
}
Thanks.