I have a text field that allows both alpha and numeric entry. The numeric input can be anywhere in the field. What I am trying to accomplish is to make any alpha entry display in upper case on exit. Example entry a5df on exit would display A5DF.
I have a text field that allows both alpha and numeric entry. The numeric input can be anywhere in the field. What I am trying to accomplish is to make any alpha entry display in upper case on exit. Example entry a5df on exit would display A5DF.
LiveCycle Form:
xfa.event.change = xfa.event.change.toUpperCase();
AcroForm:
event.change = event.change.toUpperCase();
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script