focusLost event not fired when I changed from JRE 1.3 to 1.4.2
Hi,
I have a reconcile screen. There are textboxes for each amount denominations(eg. 100$,50$). I have focuslost listeners for these textboxes. When I enter a value in 100$ text box and click on reconcile button, Focuslost method is called.There I process for total amount(textbox value*100). Then I call another method where I display a dialogbox for the user to confirm. this will have the total amount.
This was developed in JRE1.3.0.Now,I've shifted to JRE 1.4.2 - What is happening is when I enter a a value in 100$ text box and click on reconcile button, Focuslost method is not called.Instead call directly comes to the method where I call the dialogbox for the user confirmation. As a result, the dialog box is not showing the correct value.
What should I do to fire the focuslost event when I click my reconcile button?

