I see. Thank you.

Btw, is there a way to group these events together?  I tried
surrounding them with bracket but it doesn't work.


On Jun 30, 6:49 pm, Thomas Broyer <t.bro...@gmail.com> wrote:
> The type of handler is determined by the type of event. Here, your onFocus
> method would be called on *click* of the textbox. What you need are
> FocusEvent and BlurEvent:
>
> @UiHandler("textbox1")
> void whatever(FocusEvent event) { ... }
>
> @UiHandler("textbox1")
> void whatever_really(BlurEvent event) { ... }

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to