vote up 0 vote down star

I have created a JList and I want to add it to the table and then add the table to the scroll pane so that both of them will be contained in the scroll pane.

import model.*;
import java.awt. *;
import java.text.*;
import javax.swing.*;
import javax.swing.table.TableColumn;

public class ScrollPanel extends JPanel implements View
{
private Prison prison;
private String[] cells = new String[20];
private JList list = new JList(cells);

public ScrollPanel(Prison prison)
{
    this.prison = prison;
    prison.attach(this);
    setup();
    build(prison);
}

public void setup()
{

}

public void build(Prison prison)
{
    int rows = 20;
    int columns = 2;

    for (int i = 0; i < 20; i++)
    {
        cells[i] = prison.cells().get(i).id();
    }

    JTable table = new JTable(rows, columns);
    table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    TableColumn column = null;
    column = table.getColumnModel().getColumn(0);
    column.setPreferredWidth(91);
    column = table.getColumnModel().getColumn(1);
    column.setPreferredWidth(91);
    table.add(list);
    JScrollPane scrollPane = new JScrollPane(table);
    scrollPane.setPreferredSize(new Dimension(220, 150));
    add(scrollPane);
}

public void update()
{ }
}

This is how my program looks when I did the code I pasted above, which is adding the list to the table. alt text When I added the table to the list and then to the scroll pane, this is how it looked. How do I add them both to the scroll pane with both of them showing?

alt text

This is what it should look like..

alt text

flag

53% accept rate

3 Answers

vote up 0 vote down

Maybe you could add a "Details" button to each row of the table. If, so then the TableButtonColumn will help you out.

link|flag
vote up 1 vote down

I'm not sure what you are trying to achieve, if you just want to have the first column in the table show values for a row id like 1.1,1.2,1.3, etc, you could just add those to the first column of the jtable, you could even style that column different w/ Renderers. If that will not work then you could try and set the JList on the rowHeader of the scrollpane, similiar to the below. You will need to adjust the row height to accomodate the list height, or vice-versa. But this will achieve what you want and allow the list to scroll w/ the table. Good Luck!

import java.awt.Dimension; import javax.swing.JFrame; import javax.swing.JList; import javax.swing.JScrollPane; import javax.swing.JTable;

public class Scroll {

public static final void main(String[] args){
	JFrame f = new JFrame();
	f.setSize(new Dimension(400,400));
	JList list = new JList(new Object[]{"1.1","1.2","1.3","1.4","1.5","1.6","1.7","1.8","1.9","1.10","1.11"});
	JTable table = new JTable(11,10);
	JScrollPane sp = new JScrollPane(table);
	sp.setRowHeaderView(list);
	f.getContentPane().add(sp);
	f.setVisible(true);
}

}

link|flag
I need a JList so that when I click on a number, a panel will pop up showing the details of that prison cell. – Karen Oct 23 at 14:35
You can do that with a table. Based on these requirements I would implement as above, but I think a cleaner approach would be to do this in a table, you could render the first cell different to show it is clickable, or has an action associated with it. You can add a columnModelListener, or a ListSelectionListener to the table. These events will allow you to listen to various events on the table that should allow you to achieve what you want. table.getSelectionModel().addListSelectionListener('YOUR LISTENER') table.getColumnModel().addColumnModelListener('YOUR LISTENER') – broschb Oct 23 at 15:26
vote up 1 vote down

What do you want to achieve by adding a JList to a table? It's a fundamentally wrong thing to do - JTables aren't intended to have components added to them at all. If you want the table to display the items in the list, you need an implementation of the TableModel interface, not a JList.

Edit: If you want the JList and the JTable to be displayed next to each other, you have to addthem both to a JPanel before adding that to the ScrollPane. But this is a rather unusualy thing to do; normally, a table is in a ScrollPane of its own. You could have a separate ScrollPane each for the table and the list. Or you could simply put the list items in the first column of the table. Which is better depends on your requirements.

link|flag
so if I use TableModel and add the table model and JList to the scroll, they will come together? – Karen Oct 23 at 11:57

Your Answer

Get an OpenID
or

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