Hello guys,
Is there a way to set in input element input value to uppercase/lowercase only? If user types for instance dwWDa24, bubble should automaticly change it to DWWDA24. It is necessary in my case because in workflow I cannot set :uppercase function for not known for me reason.
This is my workflow:
I want :uppercase in this dropdown menu because function doesn’t work when it executes it present way.
Thank you guys, I just modified deadpoetnsp solution. Instead of Text element I added another hidden input element where I set initial content to be the first input value:uppercase
Since another UI element isn’t actually needed, this seems like a good use-case for a custom state. Add a custom state of type Text to the input; and when the input changes, set the custom state to the input’s value converted to upper case.