Applying field exclusion , if A then B.
hi,
i wondering if it's possible 'switch' off fields based on end-user's response.
to simplify things, have example: have 3 fields. if answer (3rd) field checked, negates responses 1-2 , thus, boxes come 'blank'.
i want know how 'cancel'/'exclude 2 fields if end user checks 3rd field.
is there way use acrobat pro x make work?
does matter type of field use (if there method so)?
i still novice software eventhough i've played abit i'd appreciate simple , clear instructions/responses.
thanks,
put in mouseup script checkbox (field 3). sure change names fields 1 & 2 have named fields
if (event.target.value == 'off') {
this.getfield('field_1').display = display.visible
this.getfield('field_2').display = display.visible
} else {
this.getfield('field_1').display = display.hidden
this.getfield('field_2').display = display.hidden
}
More discussions in PDF Forms
adobe
Comments
Post a Comment