I declared my JTable as:
data_table = new JTable(info, header) { @Override public boolean isCellEditable(int row, int column) { return false; } };
But I saw that at runtime you can drag and drop columns with the mouse. How can I disable this?
java swing jtable
giozh Jul 14 '13 at 16:09 2013-07-14 16:09
source share