Previous | Next | (P-PDF) JavaScript
Topic: Check Box Values (and Conditional Form Fields)
Conf: (P-PDF) JavaScript, Msg: 80409
From: Stefy
Date: 1/29/2003 05:50 AM
Create a 2 field :
Step 1 : in the properties of the first field go to validate
Step 2 : Check "custom validate script"
and copy this script
var f = this.getField("second field name");
f.hidden = (event.value < 25);
event.value = util.printf("%f", event.value);
You can change the script to match what you need it's a good start !!!
stefy