Hide/showing a text field depending on conditions
Hi,
My question is in two parts. I need to show the field ''eligible_Reguliere'' only if the value of the field ''Total'' is equal or bigger than 45. I tried to run scripts on the field ''eligible_Reguliere''. It doesn't work. I tried putting it in the main Javascript of the document. Doesn't work. My script is:
var totalField = this.getField("Total");
var eligibleField = this.getField("eligible_Reguliere");
if (totalField.value >= 45) { eligibleField.display = display.visible; }
else { eligibleField.display = display.hidden; }
My second part is that I have the field ''eligible_Rapide'' that must show if the box named ''10+'' is checked. How can I do it?
Every research I do bring me back to this page: Définition des conditions d’affichage et de masquage des champs de formulaires (adobe.com)
But I NEVER those options in Acrobat. Help please!
