Can anyone tell me how to insert a table without a table header? I am making sudoku puzzle and i want to insert a table without the table header in java. Is it possible?
+4
A:
I don't think that you want your Sudoku to scroll, so the easiest way should be not to put your table into a JScrollPane
, which is responsible for displaying the header:
The other way is to call
table.setTableHeader(null);
Peter Lang
2010-03-27 09:15:31