Swap images based on field value
Looking for some assistance with a PDF. I have two images that I need to display based on a value in another field. If the value of field A is X then show image 1 is field is Y then show image 2. Is this possible?
Looking for some assistance with a PDF. I have two images that I need to display based on a value in another field. If the value of field A is X then show image 1 is field is Y then show image 2. Is this possible?
Show image B
Use something like this as the custom validation script of the text field:
var b = event.value.indexOf("Voice")==0;
this.getField("Image1").display = b ? display.visible : display.hidden;
this.getField("Image2").display = !b ? display.visible : display.hidden;
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.