How to remove ClickHandler event in GWT? I have added the AddClickHandler () event for the button, and I want to remove the ClickHandler event. I tried the HandlerRegistration method. But he could not remove the handler. Here is a snippet:
notification.addClickHandler(new ClickHandler() { @Override public void onClick(ClickEvent event) {
I want to delete a notification handler!
Note: Notification is the button instance that calls the handler!
gwt gwt2
Rangesh
source share