如何删除 GWT 中的 ClickHandler 事件?我为按钮添加了 addClickHandler() 事件,我想删除 ClickHandler 事件。我尝试了 HandlerRegistration 方法但它未能删除处理程序,这是一个片段:
notification.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
// TODO Auto-generated method stub
}
});
我想通过通知删除处理程序!
Note:
Notification is the button instance that calls the handler!