I am going to try to add a listener but i don't know what to do.
I want to execute a function after the user finish inputting text.
For example, a user input text "123" in to my TextArea and use mouse to click outside , or click another field / whatever.
What listen should i use in GWT?
I don't know the keywords of the listener so i come here for help.
The Code i had try it simply, actually i don't think it helps a lot if i provide the coding since i only don't know what listener / how to make the function i want.
private TextArea TextAreaPartA;
TextAreaPartA = new TextArea();
TextAreaPartA.setFieldLabel("PartA");
TextAreaPartA.setSize(500, 40);
//TextAreaPartA.onComponentEvent(ce);
Use AddBlurHandler,