cancel
Showing results for 
Search instead for 
Did you mean: 

Cell hiding problem in adobe form

Former Member
0 Kudos

Hi,

I am making a adobe form which contain 5 row and 5 column and i am filling this by using internal table . My requirement is  : when internal table doesn't contain some column(means suppose column 4 doesn't contain any value then i want to hide from 4th column) value i want hide from that column dynamically.

Regards,

Durga

Accepted Solutions (0)

Answers (2)

Answers (2)

ramakrishnappa
Active Contributor
0 Kudos

Hi Gupta,

Please refer the below links

Adobe Community: How to hide table with empty content using Javascript? 

Hope this helps you.

Regards,

Rama

former_member184578
Active Contributor
0 Kudos

Hi,

You could write a script to hide the columns dynamically,

ex script:

for (field = COL4)

if (this.rawValue == '0'){

   this.parent.COL4.presence = "hidden";

}

Hope this helps u,

Regards,

Kiran