Coverting Text to Uppercase

Problem

Sometimes you want to force users to enter text into one of your ApEx page items in upper case.

Solution

onChange="this.value=this.value.toUpperCase();"
Or, if you want to force the text to lower case:
onChange="this.value=this.value.toLowerCase();"




Acknowledgement

https://atulley.wordpress.com/2007/06/12/automatically-converting-text-to-uppercase/

Comments