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

JComboBox.setPopupVisible(false) doesn't hide its popup

XMLWordPrintable

    • sparc
    • solaris_2.5.1



      Name: aaC67449 Date: 01/22/99


      JComboBox.setPopupVisible(false) doesn't hide its popup


      javadoc states:
      "public void setPopupVisible(boolean v)
            Set the visiblity of the popup
      "

      See example.
      --------------- Example---------------------------
      import javax.swing.*;
      import java.awt.*;

      public class Test {
          public static void main(String argv[]) {
             JComboBox c = new JComboBox();
             JFrame frame = new JFrame();
             frame.getContentPane().add(c);
             frame.setSize(100,100);
             frame.setVisible(true);
             
             c.showPopup();
             
             c.setPopupVisible(false);
             if(c.isPopupVisible())
              System.out.println("FAILED");
             else
              System.out.println("OK");
         }
      }
      ----------------output------------------
      FAILED
      -------

      And popup part of JComboBox is realy visible on the screen!

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

            gsaab Georges Saab
            aalievsunw Artem Aliev (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: