Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dynamically adding JTable to JScrollPane

I have a table that I want to populate when the user prompts me to do so. Problem is, I can't anticipate how many rows the table will end up having. In the constructor for my panel where the table will be displayed I have

    // add empty scrollPane to JPanel which will later hold table
              scrollPane = new JScrollPane(); 
    add(scrollPane);

This class contains a method that will be called when I want to finally display the table

    public void displayTable(String[] columnNames, String[][] dataValues)
{
    table = new JTable(dataValues, columnNames);
    table.setPreferredScrollableViewportSize(new Dimension(300, 80)); 
    table.setFillsViewportHeight(true); 
    scrollPane.add(table);

    this.setVisible(true);
    scrollPane.repaint();

}

Problem is, the table never displays. I just see an outline of where the ScrollPane is with no table inside. Why isn't the table displaying and how can I fix it?

like image 320
Matt Avatar asked Feb 15 '13 17:02

Matt


2 Answers

You should add component not to JScrollPane but to its JViewport:

scrollPane.getViewport ().add (table);
like image 75
Mikhail Vladimirov Avatar answered Sep 24 '22 20:09

Mikhail Vladimirov


Instead of adding table to the JScrollPane Create a viewport of scrollpane and then sets its view as table. using following code instead:
scrollPane.setViewportView(table)

like image 44
Vishal K Avatar answered Sep 22 '22 20:09

Vishal K