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

JComboBox drop-down list does not work in Frame

XMLWordPrintable



      Name: kaC94536 Date: 01/11/2000



         The following code shows JComboBox created with default constructor
      and containing five items. Try to select an item from drop-down list
      and you'll see that it is not shown properly. If you resize frame
      window to a smaller height (50 pixels for example) the drop-down list
      will popup normally. The same code works well if JFrame is used
      instead of Frame.
         The same behavior is observed on Solaris.

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

      class test {
         public static void main(String args[]) {
            Frame f = new Frame();
            f.setLayout(new FlowLayout());
            JComboBox jcb = new JComboBox();
            jcb.addItem("one");
            jcb.addItem("two");
            jcb.addItem("three");
            jcb.addItem("four");
            jcb.addItem("five");
            f.add(jcb);
            f.setSize(300, 300);
            f.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: