FocusListener event invoke later then ListSelectionListener
Hello Friends,
I have one JList,JComboBox and JTextField.
Suppose i have added focusListener to JTextField and write some code at lostFocus() method.
And JTextField data is related to JCombox Item
like Number(in ComboBox) and 100(at JTextField).And JComboBox data is related to selected list item.
Problem is like suppose you select list item then Combo item,now you have to set some value for Combo item.And this value will assign to combo item at lost focus of JTextField.
But user click at List item...all related data will change....due to operation lostFocus of JTextField triggered at middle of Execution of ListSelectionListener.....and upto that moment all data have been clean by event of Combo .
Write to me ASAP

