ankursaxena
Programmer
Hi, I am trying to build a table which gets filled as and when data comes on the socket. I have made jscrollpane to have both the scroll bars, but still dont get the horizontal one to work, the vertical one is working, but the horizontal one shows but doesnt do anything.
I have also made colums resizable, so when I increase the size of the columns, it should show me the horizontal scroll bar, but no luck.
What do I do, to get this to work?
Thanks
Ankur
Code:
tableScrollPane = new JScrollPane(table, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
I have also made colums resizable, so when I increase the size of the columns, it should show me the horizontal scroll bar, but no luck.
Code:
table.getColumnModel().getColumn(i).setResizable(true);
What do I do, to get this to work?
Thanks
Ankur