I am using Java Swingx framework. I have 4 columns in my DefaultTableModel object. I wish to display only 3 of the columns. But, I need all four for computing.<
DefaultTableModel
You can hide it by setting its width to 0.
_table.getColumn("ID").setPreferredWidth(0); _table.getColumn("ID").setMinWidth(0); _table.getColumn("ID").setWidth(0); _table.getColumn("ID").setMaxWidth(0);