Hybrid View
-
4 Jul 2008 6:51 AM #1
how to listen a TextField get or lost focus?
how to listen a TextField get or lost focus?
how to listen a TextField get or lost focus?
i want to hide it, after it lost focus.
-
7 Jul 2008 10:31 PM #2
Events.Blur for focus loseCode:field.addListener(Events.Focus, new Listener<FieldEvent>(){ ... });
-
8 Jul 2008 12:50 AM #3
-
19 Nov 2009 7:55 AM #4
How to listen a FieldSet lost (or get) focus?
How to listen a FieldSet lost (or get) focus?
Hi,
I am using ExtGWT 2.0.
Why do Blur or Change evets not work on FieldSet or ContentPanel?
Hide and Show events are normally fired.
Regards,Code:final FieldSet fieldSet = new FieldSet(); fieldSet.addListener(Events.Blur, new Listener<FieldSetEvent>() { public void handleEvent(FieldSetEvent event) { Info.display("fieldSet Blur was fired", ""); } });
mm
-
27 Jun 2011 4:34 AM #5
TextField lost focus event
TextField lost focus event
Hi, I've the same problem
this is my code
After compiling when I lose focus from wName widget, I don't see any message!!Code:TextField<String> wName = new TextField<String>(); .... wName.addListener(Events.Blur, new Listener<FieldSetEvent>() { public void handleEvent(FieldSetEvent event) { Info.display("fieldSet Blur was fired", ""); }
what's wrong?
thank in advance!!
-
13 Dec 2011 6:17 AM #6
Try this.
User OnFocus, OnBlur event, to me this works ant the others not, in my case i have used on a button.


Reply With Quote