Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

JTable with Horizontal Scroll bar not working

Status
Not open for further replies.

ankursaxena

Programmer
Sep 7, 2001
133
0
0
US
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.

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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top