Qualtagh/JBroTable

Make table cannot be editable?

Closed this issue · 2 comments

Hello,

I wanna ask you if you can show me the way to make this table cannot be editable: like make that table cannot be resized or dragged.

Hi,

prohibit resizing:

table.getTableHeader().setResizingAllowed( false );

prohibit dragging:

table.getTableHeader().setReorderingAllowed( false );

Thank you so much <3