Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4354927

Num Lock disables Enter Key in JTextField

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.3.0
    • client-libs



      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)
      ======================================================================

            svioletsunw Scott Violet (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: