tags:

views:

53

answers:

1

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:

alt text


The other way is to call

table.setTableHeader(null);
Peter Lang