GWT popuPanel.hide() doesnt work -
    i have simple view. there uibinder , class themselves:   public class newnotepopuppanel extends composite implements newnoteview { interface newnotepopuppaneluibinder extends uibinder<popuppanel, newnotepopuppanel> { }  private static newnotepopuppaneluibinder ouruibinder = gwt.create(newnotepopuppaneluibinder.class);   @uifield popuppanel popuppanel; @uifield verticalpanel newnotemainpanel; @uifield horizontalpanel newnoteheader; @uifield label storednotetitle; @uifield datelabel notecreateddate; @uifield verticalpanel contentpanel; @uifield textbox currentnotetitle; @uifield richtextarea contenttextarea; @uifield horizontalpanel newnotefooter; @uifield checkbox favorite; @uifield button save; @uifield button close;  private presenter presenter;  static {     resources.instance.style().ensureinjected(); }  public newnotepopuppanel() {     initwidget(ouruibinder.createandbindui(this)); }  @uihandler("favorite") void onfavoritecheckboxclicked(clickevent event) {     ...