JTable edit problem
I have a JTable, with 6 columns and 2 rows that I need to fill..
If I don't press the Enter key after filling each cell, and if I click on any other component (like menu item in menubar) then the value which i have entered in the table cell is lost.
I tried using
table.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
still, i find the value which i have entered in the table cell is lost.
Can anyone suggest me a way of acheiving this

