Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
table.setPreferredScrollableViewportSize(table.getPreferredSize());
JScrollPane scrollPane = new JScrollPane(table);
panel.add(scrollPane);

The scrollPane is not visible. If I add the

table.setPreferredScrollableViewportSize(table.getPreferredSize());

What do you think did I miss in the code? Because of I didn't put the

table.setPreferredScrollableViewportSize(table.getPreferredSize());

the JTable layout is not fitting on my panel.

share|improve this question

2 Answers

up vote 2 down vote accepted

Instead of doing this,

table.setPreferredScrollableViewportSize(table.getPreferredSize());

Specify Dimension like this,

table.setPreferredScrollableViewportSize(new Dimension(400, 60));

UPDATE:

I think the above stated answer is not a good approach. You should never use setXXSize methods on a component. So please use this appraoch stated by @Kleopatra to set the Viewport size.

share|improve this answer
+1 but could be down_voted – mKorbel Jan 17 at 18:10
@mKorbel :) Please my friend can you tel me why? – Che Jan 18 at 1:30
for example – mKorbel Jan 18 at 9:34
Thanks. I have updated the answer. Aaah Now I guess the down_vote you told could be coming from @Kleopatra .. :-) – Che Jan 18 at 11:06

try this instead

public ScrollableTable(String[][] aData, String[] aColumnNames) { //sample args
    super();

    TableModel model = getTableModel(aData, aColumnNames);
    JTable overviewTable = new JTable(model);
    overviewTable.setGridColor(new Color(240, 240, 240));
    TableRowSorter<TableModel> sorter = new TableRowSorter<TableModel>(model);
    overviewTable.setRowSorter(sorter);

    this.setViewportView(overviewTable);
 }
share|improve this answer

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.