I have been using the function getText() to read user Input in MyJTextField Until I have noticed that this does Not Look Possible with Disabled JTextField.
JTextField jtx = new JTextField();
jtx.setText("TEST");
jtx.setEnabled(false);
String str = jtx.getText();
System.out.println(str);
This does not return Anything and I am begining to think that it is because of the Disabled JTextField. Is there a Way to get Text From a Disabled JTextField or Should I just:
jtx.setEditable(false);
I do not want to do this. I want the field to be disabled.
