Upper Case Letters
Goal:
Change lower case letters inserted by a user to a Text Input to upper case letters.
Instructions:
- Create the Template tag (name does not matter for the script) and attach this tag to a Text Input where should be upper case letters only.
- Insert the below-mentioned script to that tag.
Script Example:
var res = str.toUpperCase(); LEGITO.documentBuilder.event.element.setValue(res); |