Jtable禁用悬停选定的行

时间:2014-03-14 15:37:47

标签: java swing jtable

我对jtable有一点问题:

enter image description here

当我点击 Appliquer utton时,他会清除除写入内单元格以外的所有表格,因此我需要取消设置写入内容 mode ??

当我点击 Appliquer 按钮时的样子: enter image description here

2 个答案:

答案 0 :(得分:2)

您仍在编辑单元格中的数据,因此尚未将其保存到TableModel。

请参阅Table Stop Editing了解一些解决方案,以确保在您点击按钮时保存数据。

答案 1 :(得分:1)

尝试使用:

table.clearSelection();

或者特定细胞使用。

columnModel.getSelectionModel().clearSelection();