Automatically converting text to uppercase
Sometimes you need to get data typed uppercase or lowercase but you can’t trust user for this.You need to force them to enter text in uppercase/lowercase.
To achieve this you can add the following code to HTML Form Element Attributes of your item.
For uppercase
onChange="this.value=this.value.toUpperCase();
For lowercase
onChange="this.value=this.value.toLowerCase();
No comments yet