Column resizing problem in JTable

A

AimsLife

Hi,

I am using jdk1.5 kit for development. I developed a JFrame window
which has JTable in view. JTable columns and rows created using Custom
"TableModel" with the name of "InfoTableModel" extended by
"AbstractTableModel". InfoTableModel contain list of data to be
display. I need customize my table column, can you please guide me how
I can give column width for proper column width?

Regards,
-aimslife
 
R

RedGrittyBrick

AimsLife said:
Hi,

I am using jdk1.5 kit for development. I developed a JFrame window
which has JTable in view. JTable columns and rows created using Custom
"TableModel" with the name of "InfoTableModel" extended by
"AbstractTableModel". InfoTableModel contain list of data to be
display. I need customize my table column, can you please guide me how
I can give column width for proper column width?

JTable table;
int column, width;
....
table.getColumnModel().getColumn(column).setPreferredWidth(width);

Usually I have the table in a JScrollPane in a layout that allows it to
resize to the max size allowed by window size & other components. In
this case the preferred widths of the columns is used to set the widths
of the columns RELATIVE to one another. As a rule of thumb I set the
width to 10 x the number of characters I expect the column to contain.
 
A

AimsLife

Thanks

Regards,
-aimslife

JTable table;
int column, width;
...
table.getColumnModel().getColumn(column).setPreferredWidth(width);

Usually I have the table in a JScrollPane in a layout that allows it to
resize to the max size allowed by window size & other components. In
this case the preferred widths of the columns is used to set the widths
of the columns RELATIVE to one another. As a rule of thumb I set the
width to 10 x the number of characters I expect the column to contain.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,756
Messages
2,569,535
Members
45,007
Latest member
OrderFitnessKetoCapsules

Latest Threads

Top