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();"
Comments
Post a Comment