How to change case of words from lower to upper while typing?

Hi,

I want to convert the data to capital letters while user is typing in the textInput. I tried several ways like setting Capitalize to Characters but it didn't work.

I tried using JS query as well but it doesn't seem to work as well.

Here's the query I've written:

Is there any other way to do this?

Thanks
Ritesh

Are you trying only to capitalize the first letter? if so, {{ _.capitalize }}

No, I want to capitalize all letter.

For eg: If user is typing "hello" it should be visible to him as "HELLO"

Hello everyone,

I have figured out the solution, I'm posting it here. Just incase anyone else needs it.

let inp = symbol.value.toUpperCase() 
symbol.setValue(inp)

I made the above event handler with Change event.

Thanks!!