The JComboBox has a add(PopUpMenu) and a add(JMenuItem).

My class extends JComboBox. I create a JPopUpMenu, but it fails to display when I click on the JComboBox. Instead, nothing is displayed. Any ideas?



    JPopupMenu Pmenu = new JPopupMenu();
    JMenu textAndDataMenu = new JMenu("Text and Data");

    HashMap textAndData = new HashMap();

    public ComboMenu()
    {
        super();
        setUpTextAndData();
        add(Pmenu);  //----------this is where I add the menu

    }

    public void setUpTextAndData()
    {
        textAndData.put("Basic Text Box", TextBox.class);
        textAndData.put("Clear Text Box", ClearTextBox.class);
        textAndData.put("Table", Table.class);
        textAndData.put("Interactive Table", InteractiveTable.class);
        textAndData.put("Graph", Graph.class);

        Set textAndDataKeys = textAndData.keySet();
        JMenuItem newMenuItem;
        for(String currKey : textAndDataKeys)
        {
            newMenuItem = new JMenuItem(currKey);
            newMenuItem.addActionListener(this);
            textAndDataMenu.add(newMenuItem);
        }

        Pmenu.add(textAndDataMenu);
    }

link|improve this question

54% accept rate
feedback

1 Answer

EDIT: Nevermind ... you know, I haven't messed with these in a while.

I think all you need to do is:

Pmenu.setInvoker(this);

before adding it in your constructor.

link|improve this answer
I added the items to JMenus before adding them to the PopUpMenu so that the JMenus would be the submenus. What I am trying to accomplish is a JComboBox, that when you click it, you can access nested items. Any idea how to achieve this? – user489041 Mar 15 '11 at 19:29
See my edit, I think I went down the wrong path in looking at it. – Brian Roach Mar 15 '11 at 19:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.