When I use autocapitalize=“CHARACTERS”, I expect something like this: type ‘test’ and on the textfield I see ‘TEST’ displayed
This does not seem to work like that. How can I make this work?
Suppose a screen with 2 textfields.
The first is setVisble(true) & setAutofocus(true)
The second is setVisible(false)
Enter a text in the first field + enter
Now I change the second to setVisble(true) & setAutofocus(true)
The second is now displayed on the screen, but without autofocus?
What am I missing?
Thanks!