This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
how to change scrollable viewport size dynamicaly in JTable
cs sakthi
Greenhorn
Joined: May 11, 2001
Posts: 15
posted
0
Hai Everybody, I want to change the scrollable viewport size of a JTable dynamically occording to the number of rows. it accepts the setting size i know this when the get method call returns the size of finally set size but the panel didn't get affected!! Thanks, Sakthi.
Rajan
Greenhorn
Joined: Jun 19, 2001
Posts: 6
posted
0
hi cs, You can set your scrollableviewport size. create the dimension accoding to number of the row and width of your table. Dimension dim = new Dimension(row size, width) table.setPreferredScrollableViewportSize(dim). or table.setPreferredScrollableViewportSize(table.getPreferredSize()).
or Dimension size = table.getPreferredScrollableViewportSize(); table.setPreferredScrollableViewportSize (new Dimension(Math.min(getPreferredSize().width, size.width), size.height); Hope this will meet your requirement.
Madhav Lakkapragada
Ranch Hand
Joined: Jun 03, 2000
Posts: 5040
posted
0
"Rajan" javaranch receives a lot of users everyday and some with surprisingly similar names. Your name is not is accordance with the javaranch guidelines could you please take a moment and re-register. thanks for your cooperation. - satya