Answered
Convert Input to All Caps
I have a user input text box. I have set an arbitrary mask format to AAA9999-99999. Is there a way to set the AAA part to be all capital letters when the user inputs their text?
I have a user input text box. I have set an arbitrary mask format to AAA9999-99999. Is there a way to set the AAA part to be all capital letters when the user inputs their text?
I think you can use something like a custom keystroke script like this:
event.change = event.change.toUpperCase();
event.value = util.printx("AAA9999-99999", event.target.value);
It may be a more elegant way to accomplish this via scripting.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.