I have a TableModel
to a JTable
and I must put it on another table, and I've done it just seting the model of the second table with setModel(firstTableModel)
.
The problem is that I don't want that one of the columns of the model shows on the second table.
Is it possible to ignore/not display a single column, or I really must create another TableModel
with all the redundant information of the first table model to omit just a single column?