Hi,
I am trying to make a form read only.I want the entire form read only excpet for one field and when the client enters information into that one field,the rest of the form becomes "open".
I would appreciate any help on this.
Thanks!!!!
Views
Replies
Total Likes
You can try to put a script on the Exit event of the 1st field.
Then you validate if the field is not empty, and use the property Access to set the behavior of the other fields.
Example:
field.access = "open";
subform.access = "open";
Views
Replies
Total Likes