cancel
Showing results for 
Search instead for 
Did you mean: 

How to Hide or Unhide Table in Adobe form

santhosh_nagavalli
Participant
0 Kudos

Hi Experts ,

         Can anyone tell me how to Hide or Unhide the table in adobe form dynamically according to condition,Thanks in Advance.

Thanks & Regards

Sandesh

Accepted Solutions (1)

Accepted Solutions (1)

ramakrishnappa
Active Contributor
0 Kudos

Hi Sandesh,

You can use the javscript code to hide / unhide the fields in adobe form.

Click on TABLE element and choose the java script for hiding/unhiding fields

Example:

if(this.rawValue == null)

{

  this.presence = "hidden";

else

{

this.presence = "visible";

}


Please refer the below link:

Hiding a Field Using Javascript in Adobe Form based on the condition


Hope this helps you.


Regards,

Rama

santhosh_nagavalli
Participant
0 Kudos

Hi Ramakrishnappa ,

                       Thanks for reply ,its worked

Thanks & Regards

Sandesh

Answers (0)