Make table cannot be editable?
Closed this issue · 2 comments
SpQuyt commented
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.
Qualtagh commented
Hi,
prohibit resizing:
table.getTableHeader().setResizingAllowed( false );
prohibit dragging:
table.getTableHeader().setReorderingAllowed( false );
SpQuyt commented
Thank you so much <3