cancel
Showing results for 
Search instead for 
Did you mean: 

blank rows in adobeforms has to be condensed

Former Member
0 Kudos

Hi,

We are struck with one issue where the spaces in between the address has to be condensed.

We are trying out different options but was not able to solve the issue. The problem comes when one of the address fields is empty. Since the fields are placed statically, the auto condense is not happening.

For example, if five address fields are placed in the form statically and if any field value is empty, it is coming as a blank row and we are unable to condense it.

Regards

Kishor

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member230486
Contributor
0 Kudos

Hi,

You have to write coding in the script editor of a field( It will remove the blank spaces if the field does not contain any value) which is shown below,

In form:ready event of the field in the script editor,

  1. if(this.rawValue == null
  2. this.presence = "hidden"
  3. }