Does anyone have any experience with using a password field?
I like to use a password field to show another page in a document. I tried several JS for hiding and showing fields, but they all failed to work.
I am open for suggestions
Martijn
Does anyone have any experience with using a password field?
I like to use a password field to show another page in a document. I tried several JS for hiding and showing fields, but they all failed to work.
I am open for suggestions
Martijn
Try a following JS to show hidden subform with fields:
if (PasswordField.rawValue=="password") HiddenSubform.presence="visible";
else HiddenSubform.presence="hidden";
You can use it as a click event handler of a button. Don't forget to change components names in JS, "password" to proper password value you like, and set options at File-Form Properties-Preview to Interactive form and Dynamic XML Form.
Hope that helps!
Regards, Andrey