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
)?