cancel
Showing results for 
Search instead for 
Did you mean: 

skiping empty field vertically in adobe form

Former Member
0 Kudos

Hi All,

I face a problem in adobe forms.

i need to display the list of items of different types in vertical fashion which i have taken in my work area in adobe form. like,

****************

<f1>

<f2>

<f3>

<f4>

****************

now the problem is,, if there is no data in <f2> and <f3>, it should display like,

***************

<f1>

<f4>

****************

but insted it is displaying like

****************

<f1>

<f4>

*****************

with gaps in adobe form, can any body help me in eliminating gaps between these fields.... i tried many ways like using sub-forms with flowed content, but nothing is gona solve my problem...

As i am new to Adobe, please help me in this..

Thanking you in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Seenu,

make sure that the layout is "Flow" and write some script like this (FormCalc) in the event FormReady.

if ( hasValue( $ ) eq 0 ) then

  $.presence = "hidden"

endif

Cheers.

Tao