Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My code follows. I want 2 labels in a grid with the labels on top of each other and 2 dropdowns that have the same thing. I want two sets of these. What I get is just the two labels NEXT to each other and 2 dropdowns NEXT to each other and the first two labels and dropdowns dont appear at all the Dropdowns are the ones that are capitalized. No errors.

JPanel grid1 = new JPanel();
            setLayout(new GridLayout(2,1));            
            grid1.add(label1);
            grid1.add(label2);
            add(grid1);
        JPanel grid3 = new JPanel();
            setLayout(new GridLayout(2,1));            
            grid3.add(IHA);
            grid3.add(IVA);
            add(grid3);
        JPanel controlholder1 = new JPanel();
            setLayout(new BorderLayout());
            controlholder1.add(grid1);
            controlholder1.add(grid3);
            add(controlholder1);


        JPanel grid2 = new JPanel();
            setLayout(new GridLayout(2,1));            
            grid2.add(label3);
            grid2.add(label4);
            add(grid2);
        JPanel grid4 = new JPanel();
            setLayout(new GridLayout(2,1));            
            grid4.add(THA);
            grid4.add(TVA);
            add(grid4);     
        JPanel controlholder2 = new JPanel();       
            setLayout(new BorderLayout());
            controlholder2.add(grid2);     
            controlholder2.add(grid4);
            add(controlholder2);

ThanksThe Output

EDIT: I have 2 labels in a grid layout and I have 2 Dropdowns in another grid . I want both of these in a border layout and I need 2 of these border layouts in another border layout. There are nested things that I dont have a handle on.

share|improve this question
My first thought is you're adding to panels to the center position of a BorderLayout, which means only the second panel will be visible – MadProgrammer Dec 2 '12 at 23:28

2 Answers

Add one label and one list in BorderLayout.NORTH and the other two in BorderLayout.SOUTH using BorderLayout

share|improve this answer
1  
Or use a GridLayout with two rows and one column or a GridBagLayout – MadProgrammer Dec 2 '12 at 23:29
yeah anyone of them could be used. – Fyre Dec 2 '12 at 23:29
Why are "Help" and "Me" not on top of each other , its a simple grid layout, 2 rows, 1 column ? and what happened to my other 2 labels and listboxes? They are grid layouts, right – mike628 Dec 2 '12 at 23:30
BorderLayout is much more simpler i think you should give it a try. – Fyre Dec 2 '12 at 23:31
@mike628 See my general comment. You've added two components to the center position of the board layout, meaning that only one is visible – MadProgrammer Dec 2 '12 at 23:32

I would do this ;

public JPanel getSubPanels(stuff_to_add_to_dropdowns, stuff_to_add_to_labels){
    JPanel subPanel = new JPanel();
    subPanel.setLayout(new GridLayout(2,2));
    subPanel.add(new JLabel(stuff_to_add_to_labels.get(0));
    subPanel.add(new JComboBox(stuff_to_add_to_dropdowns.get(0);
    subPanel.add(new JLabel(stuff_to_add_to_labels.get(1));
    subPanel.add(new JComboBox(stuff_to_add_to_dropdowns.get(1);
    return subPanel;
}

and call it twice adding it to BorderLayout.NORTH and BorderLayout.SOUTH to the parent JPanel

share|improve this answer
You forgot the return statement...and what's stuff_to_add_to_dropdowns and stuff_to_add_to_labels?? – MadProgrammer Dec 2 '12 at 23:34
edited in. The parameters are probably going to be lists. Trying to illustrate that verbose GUI code can be reduced. – case Dec 2 '12 at 23:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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