JTable issue on Lost of Focus
I noticed that my JTable wouldn't save the data on loss of focus, so search accross the forum and found this:
grid.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
Now it saves the data, the thing is, when it looses focus, the user may be clicking on a button which loads the next data set into the JTable, so instead of posting the data in the previous dataset, it seems to load the new data, then overwites the identical cell position with the new value.
Any establish solutions for this issue would be greatly appreciated.
Thanks

