Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

When double click on editable cell of jtable it shown as here.

follow

what i need is if user click mouse outside table of press a button before entering the value then existing value should be auto entered and output should be shown as follow.

after

Any help or suggestion would be greatly appreciated.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
866 views
Welcome To Ask or Share your Answers For Others

1 Answer

  1. for DefaultTableModel works by default myJTable.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);

  2. override stopCellEditing()

    a) public boolean stopCellEditing()

    b) myJTable.getCellEditor().stopCellEditing();

    c) myJTable.getCellEditor(row, col).stopCellEditing();


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...