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

up/down arrow keys do not work properly for JComboBox

XMLWordPrintable



      Name: kaC94536 Date: 01/11/2000



         The following code shows JComboBox with five items where the second and
      fourth items are equal. In this case there is no possibility to select
      the last two items using up/down-arrow keys.
         The same behavior is observed on Solaris.

      -------------------------- test.java --------------------------------
      import java.awt.*;
      import javax.swing.*;

      class test {
         public static void main(String args[]) {
            JFrame jf = new JFrame();
            jf.getContentPane().setLayout(new FlowLayout());
            JComboBox jcb = new JComboBox();
            jcb.addItem("one");
            jcb.addItem("two");
            jcb.addItem("three");
            jcb.addItem("two");
            jcb.addItem("five");
            jf.getContentPane().add(jcb);
            jf.setSize(300, 300);
            jf.show();
         }
      }
      ======================================================================

      ======================================================================

            mdavidsosunw Mark Davidson (Inactive)
            kanisimosunw Konstantin Anisimov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: