cancel
Showing results for 
Search instead for 
Did you mean: 

hide a row or field in adobe form

Former Member
0 Kudos

Hi guys,

Can any one suggest me how to hide a field in adobe form.

My scenario is:

Using control levels for deliveries with item data, if the item line is only one, then I should not display any subtotal field, if item lines are more than one, only then i need to display subtotal field in adobe form.

Subtotals are maintained at item level not at the page level.

Can any provide solution with scripting.

Thanks.

RP.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

One way is have some variable which tells how many rows of data is present. Check it and then make subtotal

visible or hidden. The script will be like below.

if (rownum.rawValue == 1) then

this.presence = 'hidden'

else

this.presence = 'visible'

endif

Thanks,

Aravind