-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.3.0
-
x86
-
linux
Name: sl110371 Date: 07/20/2000
java version "1.3.0beta_refresh"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0beta_refresh-b09)
Java HotSpot(TM) Client VM (build 1.3.0beta-b07, mixed mode)
When running on Linux (kernel 2.2.14, XFree86 3.3.6), the Enter key is ignored
in JTextFields when Num Lock is active. This prevents actionEvents from being
sent by the JTextField when the Enter key is pressed.
The following simple program demonstrates this behavior:
import javax.swing.*;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class Test extends JFrame {
private JTextField ta;
private class TestActionListener implements ActionListener {
public void actionPerformed(ActionEvent e)
{
System.out.println(e.getActionCommand());
ta.setText("");
}
}
public Test()
{
super("Test Window");
ta = new JTextField(15);
ta.addActionListener(new TestActionListener());
getContentPane().add(ta);
setSize(200,200);
}
public static void main(String args[])
{
Test t = new Test();
t.show();
}
}
For example (starting with numlock off):
Input Output
---------------------------------------------------
abcdefg<enter> abcdefg
1234567<enter> 1234567
<numlock>
abcdefg<enter>
1234567<enter>
<numlock>
<enter> abcdefg1234567
(Review ID: 107385)
======================================================================
- duplicates
-
JDK-4342216 linux, jdk1.3.0-b7, pressing Num Lock to enter Num Lock mode causes java to halt
-
- Closed
-