I have a JTable and am passing a data array into the TableModel. I wish to retain all columns in the data model as I need them all for background data processing, but I wish to show only some of the columns in the JTable.

How do I achieve this -- to remove a data column from the view (the visualized JTable) but not from the model (the TableModel)?

link|improve this question

How to remove a column has been answered, however a better solution would be to create your own table model which provides the table with the relevant data. – vickirk Jul 28 '11 at 7:45
You can hide columns dynamically, as shown here and here. – trashgod Jul 28 '11 at 8:09
feedback

2 Answers

up vote 3 down vote accepted

JTable has

public void removeColumn(TableColumn aColumn)
link|improve this answer
I know remove column method. My doubt is how will it arrange data in columns. Say I have 3 columns. I have model data of 3 columns. I want to show only 2 columns. So how will it recognize which data to put in which column? – Umesh Kacha Jul 28 '11 at 7:47
Methods of JTable to convert view column index to model and opposite public int convertColumnIndexToModel(int viewColumnIndex) and public int convertColumnIndexToView(int modelColumnIndex) – StanislavL Jul 28 '11 at 7:55
convertXxxXxx +1 – mKorbel Jul 28 '11 at 12:28
feedback

Override getColumnCount of the model to return less columns that there is. Then put your hidden columns as last columns of the model.

link|improve this answer
-1 because: a) not necessary b) not robust – kleopatra Jul 28 '11 at 11:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.