好的,我发现JTable
中的编辑器存在问题。场景如下:
我怀疑我的编辑器,因为当我使用DefaultCellEditor
时没有问题。这是它的声明:
public class GlobalEditor extends DefaultCellEditor {
public GlobalEditor(JTable table, JTextField jtf) {
super(jtf);
/*
* Setting font, background/foreground color, center alignement
*/
}
public boolean stopCellEditing() {
String value = ((JTextField) getComponent()).getText();
if (!value.equals("")) {
if (value.length() > 10) {
((JComponent) getComponent()).setBorder(new LineBorder(Color.red));
return false;
}
}
return super.stopCellEditing();
}
@Override
public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) {
JTextField ec = (JTextField) editorComponent;
if(value != null && value+"" != "---")
ec.setText(""+value);
if (isSelected) {
ec.selectAll();
}
return editorComponent;
}
}
这一行this.setDefaultEditor(Object.class, new GlobalEditor(this, new JTextField()));
在我的JTable
构造函数中设置了我的编辑器。
我错过了什么?
答案 0 :(得分:0)
好的,这很有效:
JTextField ec = (JTextField) super.getTableCellEditorComponent(table, value, isSelected, row, column);
而不是(也返回ec
而不是editorComponent
):
JTextField ec = (JTextField) editorComponent;
在getTableCellEditorComponent
方法中。
欢迎任何解释!
答案 1 :(得分:-1)
您应该覆盖getCellEditorValue方法
public Object getCellEditorValue() {
return ((JTextField) getComponent()).getText();
}
也无需使用JTable初始化GlobalEditor