I'm trying to create a form that requires both signatures and initials. However, I can't seem to find a way to format the field for just initials. Is there a better way to do this other than using a text box?
You can put a Validation script in the form field such as:
// This script can be used in a Validate or Blur event var pattern = /^[A-Z]{2}$/;
if (!pattern.test(event.value)) { app.alert("Please enter exactly two uppercase initials (e.g., AB)."); event.rc = false; // Reject input }