Is it possibiel to disable drag and drop of JTable columns?

Hi,Using JDK6 I would like to disable user to drag and drop columns and change the default layout of my JTables.Thanks for any help,
[153 byte] By [Edilmar_Alvesa] at [2007-11-27 7:13:22]
# 1

> Using JDK6 I would like to disable user to drag and drop columns

Read the JTableHeader API. You can prevent reordering of the columns.

> and change the default layout of my JTables.

How do you expect us to answser this? What do you mean by changing the layout? Whats wrong with row and column and what do you want to change it to?

camickra at 2007-7-12 19:04:09 > top of Java-index,Desktop,Core GUI APIs...
# 2
Thanks friend... I solve with JTableHeader code:JTableHeader header = grid.getTableHeader();header.setReorderingAllowed(false);
Edilmar_Alvesa at 2007-7-12 19:04:09 > top of Java-index,Desktop,Core GUI APIs...