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

Populate a JComboBox model in a popupMenuWillBecomeVisible() listener.

XMLWordPrintable

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



      Name: yyT116575 Date: 02/07/2001


      Q:\>java -version
      java version "1.3.0"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
      Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)

      Please try the added source code. The purpose is to populate the combobox at
      the time the user clicks on it, just before the drop down is displayed. The
      contents of the combobox in our application changes outside the context of the
      program (on the server), so when the combobox is opened, a new list of items to
      be showed in the dropdown is retrieved.

      1. I used the solution of the article "Watch for the JComboBox Pulldown to
      Open" article of John Zukowski
      @java.about.com/compute/java/library/weekly/aa080400a.html in order to
      repopulate the DefaultComboBoxModel with new values in the PopupMenuListener.
      When I instantiate the JComboBox, I added one item to the JComboBox.

      2. The first time I click on the combobox, I add 5 new items to the model in
      the popupMenuWillBecomeVisible() listener. The problem is that only one item is
      displayed although the model contains 5 items. This one item is displayed in a
      scrolling popup which actually dispays only the first item, so the scrollbar is
      very tiny.

      3. The second time I click on the combobox, I add 5 more items to the model in
      the popupMenuWillBecomeVisible() listener. Now only 5 items are shown in the
      list, although at this time the model contains 10 items.

      4. The next time I click on the combobox, I add 5 more items to the model in
      the popupMenuWillBecomeVisible() listener. From now off the list shows 8 items
      as expected.

      SOURCE CODE to demonstrate the problem:
      =======================================
      import java.awt.*;
      import javax.swing.*;
      import javax.swing.event.*;
      import javax.swing.plaf.*;
      import javax.swing.plaf.basic.*;
      import javax.swing.plaf.metal.*;

      public class MetalComboBoxUIEx extends MetalComboBoxUI {
        public BasicComboPopup pup;

        public static ComponentUI createUI(JComponent c) {
          return new MetalComboBoxUIEx() {
            protected ComboPopup createPopup() {
              pup = (BasicComboPopup)super.createPopup();
              return pup;
            }
          };
        }

        public static void main(String args[]) {
          PopupComboSample frame = new PopupComboSample();
          frame.setSize (300, 300);
          frame.setVisible (true);
        }
      }

      class PopupComboSample extends JFrame {
        int count = 0;
        String labels[] = { "Chardonnay", "Sauvignon", "Riesling", "Cabernet", "Zinfandel", "Merlot",
            "Pinot Noir", "Sauvignon Blanc", "Syrah", "Gew?rztraminer", "Chardonnay", "Sauvignon",
            "Riesling", "Cabernet", "Zinfandel", "Merlot", "Pinot Noir", "Sauvignon Blanc", "Syrah",
            "Gew?rztraminer","Chardonnay", "Sauvignon", "Riesling", "Cabernet", "Zinfandel", "Merlot",
            "Pinot Noir", "Sauvignon Blanc", "Syrah", "Gew?rztraminer","Chardonnay", "Sauvignon",
            "Riesling", "Cabernet", "Zinfandel", "Merlot", "Pinot Noir", "Sauvignon Blanc", "Syrah",
            "Gew?rztraminer","Chardonnay", "Sauvignon", "Riesling", "Cabernet", "Zinfandel", "Merlot",
            "Pinot Noir", "Sauvignon Blanc", "Syrah", "Gew?rztraminer","Chardonnay", "Sauvignon",
            "Riesling", "Cabernet", "Zinfandel", "Merlot", "Pinot Noir", "Sauvignon Blanc", "Syrah",
            "Gew?rztraminer","Chardonnay", "Sauvignon", "Riesling", "Cabernet", "Zinfandel", "Merlot",
            "Pinot Noir", "Sauvignon Blanc", "Syrah", "Gew?rztraminer"};

        class JComboBoxEx extends JComboBox {
          public void setUI(ComboBoxUI ui) {
            super.setUI((MetalComboBoxUIEx) MetalComboBoxUIEx.createUI(this));
          }

          public void addPopupMenuListener( PopupMenuListener listener ) {
            ((MetalComboBoxUIEx)ui).pup.addPopupMenuListener( listener );
          }

          public void removePopupMenuListener( PopupMenuListener listener ) {
            ((MetalComboBoxUIEx)ui).pup.removePopupMenuListener( listener );
          }
        };

        JComboBoxEx comboBox = new JComboBoxEx();

        PopupMenuListener l = new PopupMenuListener() {
          public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
            DefaultComboBoxModel model = (DefaultComboBoxModel) comboBox.getModel();
            model.removeAllElements();
            count = (count + 5) % labels.length;
            for( int i = 0 ; i < count; ++i ) model.addElement( "" + (i + 1) + " " + labels[i]);
          }
          public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {}
          public void popupMenuCanceled(PopupMenuEvent e) {}
        };

        public PopupComboSample() {
          this.setTitle("Popup JComboBox");
          this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
          Container contentPane = getContentPane();
          comboBox.setModel( new DefaultComboBoxModel() );
          comboBox.addItem("Test");
          comboBox.addPopupMenuListener(l);
          contentPane.add(comboBox, BorderLayout.NORTH);
          Component[] c = comboBox.getComponents();
        }
      }
      (Review ID: 116494)
      ======================================================================

            mdavidsosunw Mark Davidson (Inactive)
            yyoungsunw Yung-ching Young (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: