How to hide text in Adobe Form if user checks checkbox in selection screen?

495 Views Asked by At

I am fresher to Adobe form I want to print a text field if user click on the check box in the selection screen otherwise it will be hide that text field and print all other text in the Adobe form can anyone help me out...

2

There are 2 best solutions below

0
schmelto On

You can use scripting for this issue.

I found a great article for this here (unfortunately its only in German).

But you can check the initial state of a variable for example like this:

this.RABATT.rawValue == null || this.RABATT.rawValue == 0

or

this.RABATT.rawValue == null || this.RABATT.rawValue == ""

For hiding the object in the form you can use:

 if (DATE.rawValue == null)
 {
   this.presence = "hidden";
 }
 else
 {
   this.presence = "visible";
 }

Maybe this helps you a little bit.

0
akshay bhapkar On

Try this:

You can directly add check if checkbox is not initial.

Add your logic to print a text field.

Endif.