How to select a dynamic text field?
I'm working on a page where the user enters their password, then confirms it, so of course their are two dynamic text boxes.
For the first text box, they enter keys on a keyboard and of course the text goes into the text field, like so.
myTextField_txt.appendText(myKeyPressedString);
Works fine.
However, I can't seem to figure out when they are done with the first password how to switch them to the second text field. Clicking on the area where the second dynamic text field is doesn't highlight it or give me a cursor.
We really want to do this on one page, not two. Is there some way to make the second field selectable to change the target for the keyboard?