Hi Experts,
I am trying to do the following scenario in adobe forms.
I have a simple subform which is set to Flowed.
It has two elements.
One variable which is passed from the print program and a standard text (include text).
If the variable is not populated, then the first element should be the standard text.
else both elements should be populated.
I have included the following code in the ready:layout event using java script:
if
(this.rawValue ==null)
{
this.presence = "hidden";
}
Although it is wrking, the second element (the include text is not moving up, where there is no value for the variable.
can you please let me know what I am doing wrong?
Best Regards,
Ravikanth Talagana