Input Text Only Uppercase
Summary
What is the best way to only allow uppercase characters in an input text component?Content
I have input text components on a page and I only want to allow uppercase characters. Currently, I have a keydown event on each input text and I pass the raw value into a javascript function to convert the input characters to uppercase. However, this seems clunky to me. Is there a simple pattern or something I can set on the component properties to only allow uppercase characters to be input?
0