I have a JPasswordField in a GridLayout JPanel which in turn is put in another GridLayout JPanel.
After initialising all items, I tried different permutations of the following in an attempt to set focus to the password textbox, but none work. Why and how could I get it workin?
myPassword.setRquestFocusEnabled(true);
myPassword.requestFocus();
myPassword.moveCaretPosition(1);
myPassword.moveCaretPosition(0);
I also tried them before AND after this.pack() and this.show(). Note that the class is a modal JDialog with a parent Frame.
After initialising all items, I tried different permutations of the following in an attempt to set focus to the password textbox, but none work. Why and how could I get it workin?
myPassword.setRquestFocusEnabled(true);
myPassword.requestFocus();
myPassword.moveCaretPosition(1);
myPassword.moveCaretPosition(0);
I also tried them before AND after this.pack() and this.show(). Note that the class is a modal JDialog with a parent Frame.