Re: How do you remove a handler?

2009-03-04 Thread Ian Bambury
Ah! Thanks very much for that. Ian http://examples.roughian.com 2009/3/4 Jason Morris lem...@gmail.com Hi Ian All of the add*Handler methods return a HandlerRegistration object, you keep a reference to it, and then invoke HandlerRegistration.removeHandler() when you want to remove it.

How do you remove a handler?

2009-03-03 Thread Ian Bambury
History lets you add one, but how do I get rid of it? Ta, Ian http://examples.roughian.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: How do you remove a handler?

2009-03-03 Thread Jason Morris
Hi Ian All of the add*Handler methods return a HandlerRegistration object, you keep a reference to it, and then invoke HandlerRegistration.removeHandler() when you want to remove it. I wasn't to sure of whether I liked it or not at first, but it does make automated removal of Handlers on