Answered
How to Format text field to alpha only
Anyone have insight on the custom format script for creating text fields with alpha only input?
Anyone have insight on the custom format script for creating text fields with alpha only input?
You can use this code as the custom Keystroke script:
if (event.change) event.rc = /^[a-z]+$/i.test(event.change);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.