cancel
Showing results for 
Search instead for 
Did you mean: 

events in adobe interactive forms

Former Member
0 Kudos

Hello,

I am trying to dynamically change the visibility of a subform by using JavaScript in the event "initialize".

Here is the code:

if (ENTRYD.value=="31121994")

{

subform_vor.presence="invisible";

subform_nach.presence="visible";

}

else

{

subform_vor.presence="visible";

subform_nach.presence="invisible";

}

The code should run on the server-side.

Why doesn't it work?

Best regards, Patrick.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

please use $record.ENTRYD or xfa.record.ENTRYD to access the ENTRYD node.

Best regards

Juergen