-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.1.5, 1.1.8, 1.3.0
-
x86, sparc
-
solaris_7, windows_nt
Name: rk38400 Date: 04/13/98
run the following program. Notice that the first
JTextField has a cursor blinking but you cannot type in it.
If you hit the TAB key or click in the first JTextField, then
it will really have focus.
This seems to only happen when in a JApplet.
I'm using NT/JDK1.1.5/Swing1.0
----CUT HERE------------
import java.awt.*;
import com.sun.java.swing.*;
public class FakeFocus extends com.sun.java.swing.JApplet {
public void init() {
getContentPane().setLayout(new FlowLayout());
JTextField b1 = new JTextField(20);
JTextField b2 = new JTextField(20);
JTextField b3 = new JTextField(20);
getContentPane().add(b1);
//add(b1);
//add(b2);
getContentPane().add(b2);
getContentPane().add(b3);
//add(b3);
}
public static void main(String argv[]) {
JFrame frame = new JFrame();
FakeFocus app = new FakeFocus();
app.init();
frame.getContentPane().add(app);
frame.pack();
frame.show();
}
}
------END-----------------
(Review ID: 26888)
======================================================================
- relates to
-
JDK-4091882 modal Dialogs triggered by MenuShortcuts do not allow TextField input
-
- Closed
-