I have a form that uses some JS to hide some fields from the user. When they submit the form, it is sent for approval. I would like the person approving the form to see these hidden fields - how would I go about un-hiding them once submitted?
Thanks
I have a form that uses some JS to hide some fields from the user. When they submit the form, it is sent for approval. I would like the person approving the form to see these hidden fields - how would I go about un-hiding them once submitted?
Thanks
I know that David already answered your question, but here is something that might be useful to you.
If I have a field that one user fills out, the second doesn't see it, and the third one see it as read only: I create a new text field and I name my variable (to be consistent in my naming convention) "RdOnly_HiddenField"
Then I simply make the field Read-Only in Field Options and I set the default value to the first field that the the first user filled out.