I may well be going about this the wrong way but what I am trying to
do is enable tooltip type help messages when a user right-clicks in a
text box.  The only way I am aware of disabling the browser's default
menu is to extend TextBox() and override onBrowserEvent() and adding:

event.stopPropagation();
event.preventDefault();

The problem is that my onBlur events, which are the only other things
I'm looking for are not getting propagated.  I can certainly tell when
an event is an onBlur event, but I'm dealing with an Event object and
not a BlurEvent object.  How do I go from one to other other so that I
can process the onBlur?

Thanks,
Rob

--

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


Reply via email to