JTable columns not scrolling
843854Mar 25 2002 — edited Mar 27 2002my jtable shows records successfully and can scroll rows (vertical) but not the column. The columns were forced to fit in the available size of the jtable. Please advice. Here is my code:
...
JScrollPane resultTableScroller = new JScrollPane();
JScrollPane SQLScroller = new JScrollPane();
...
resultTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
resultTableScroller.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
resultTableScroller.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
resultTableScroller.setViewportView(resultTable);
resultPanel.add(resultTableScroller);