SWING JTabel

I am using JTable in SWING which have multiple columns. If I go an adding the data in each column by tabbing out from one column to another. After entering the data in the last column if I dont tab out and try to retrieve the value in the last column, it doesn't give me the recent value.

Can we overcome this problem? Plz Reply?

[344 byte] By [MyScreen01a] at [2007-10-3 4:31:52]
# 1
table.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
camickra at 2007-7-14 22:35:20 > top of Java-index,Desktop,Core GUI APIs...
# 2

My problem is as follows.

I have a JPanel on which a combo box is placed. On another panel, there is a JTable placed using JScrollPane.

Suppose I have added 2 values in the combo box and for those 2 values i want different data to be entered.

For 1st value, i go on entering data in all the columns. After entering data in last column, if i change the combo box value without tabbing out of the last column of the table, the last value gets copied as it is for the 2nd combo box value, but it gets blanked out for the first combo box value.

MyScreen01a at 2007-7-14 22:35:20 > top of Java-index,Desktop,Core GUI APIs...