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...
Asked
Active
Viewed 356 times
-1
-
1Question just asked in the [SAP forum](https://answers.sap.com/questions/13702240/how-to-hide-unhide-the-text-field-in-the-adobe-for.html), so I guess that the current answer is not satisfactory, right? You may add comments here to ask for some clarification too. – Sandra Rossi Aug 12 '22 at 16:19
-
Does this answer your question? [Adobe LiveCycle Designer hide label description of textfield](https://stackoverflow.com/questions/41063827/adobe-livecycle-designer-hide-label-description-of-textfield) – Suncatcher Oct 08 '22 at 01:46
2 Answers
0
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.

schmelto
- 427
- 5
- 18
0
Try this:
You can directly add check if checkbox is not initial.
Add your logic to print a text field.
Endif.

vilalabinot
- 1,420
- 4
- 17

akshay bhapkar
- 1
- 1