Examples of removeStyleName()


Examples of com.extjs.gxt.ui.client.core.El.removeStyleName()

  @Override
  protected void onComponentShow(Component component) {
    super.onComponentShow(component);
    El e = findItemElement(component);
    if (e != null) {
      e.removeStyleName(component.getHideMode().value());
    }
  }

  @Override
  protected void onLayout(Container<?> container, El target) {
View Full Code Here

Examples of com.extjs.gxt.ui.client.widget.TabPanel.removeStyleName()

          ClientState.showHighlighting = !ClientState.showHighlighting;

          if(ClientState.showHighlighting)
            tabPanel.addStyleName("showHighlighting");
          else
            tabPanel.removeStyleName("showHighlighting");   
         
          // switch state
          if(ClientState.showHighlighting){
            toggleHighlighting.setText("Deactivate Highlighting");
            toggleHighlighting.setIconStyle("icon-menu-highlightingActivated");
View Full Code Here

Examples of com.extjs.gxt.ui.client.widget.form.NumberField.removeStyleName()

        protected void onKeyUp(FieldEvent fe) {
          super.onKeyUp(fe);
          RangeMenu.this.onFilterKeyUp(fe);
        }
      };
      field.removeStyleName("x-unselectable");
      field.setEmptyText(filter.getMessages().getEmptyText());
      field.setWidth(filter.getWidth());

      switch (item) {
        case LESSTHAN:
View Full Code Here

Examples of com.extjs.gxt.ui.client.widget.menu.MenuItem.removeStyleName()

      menuItem.setHideOnClick(false);
      menuItem.setIcon(icon);

      menuItem.setWidget(field);
     
      menuItem.removeStyleName("x-unselectable");

      add(menuItem);
    }
    layout();
  }
View Full Code Here

Examples of com.google.gwt.user.client.ui.Anchor.removeStyleName()

      return;

    Anchor link = tags.get(tag.getName());
    if (link != null) {
      if (link.getStyleName().contains(TAG_WINNER_STYLE))
        link.removeStyleName(TAG_WINNER_STYLE);

      if (tag.getFrequency().equals(cloud.getMaxFrequency())) {
        link.setStyleName(TAG_WINNER_STYLE, true);
      }
    }
View Full Code Here

Examples of com.google.gwt.user.client.ui.FlexTable.FlexCellFormatter.removeStyleName()

      sel.addValueChangeHandler(updateDeleteHandler);

      table.setWidget(row, 1, sel);
      if (k.isValid()) {
        table.setText(row, 2, "");
        fmt.removeStyleName(row, 2, //
            Gerrit.RESOURCES.css().sshKeyPanelInvalid());
      } else {
        table.setText(row, 2, Util.C.sshKeyInvalid());
        fmt.addStyleName(row, 2, Gerrit.RESOURCES.css().sshKeyPanelInvalid());
      }
View Full Code Here

Examples of com.google.gwt.user.client.ui.FlowPanel.removeStyleName()

    }, MouseOverEvent.getType());

    itemPanel.addDomHandler(new MouseOutHandler() {
      @Override
      public void onMouseOut(MouseOutEvent event) {
        border.removeStyleName("pulsing");
      }

    }, MouseOutEvent.getType());
  }
View Full Code Here

Examples of com.google.gwt.user.client.ui.HTML.removeStyleName()

            closeButton.setFocus(true);
          }

          public void onSuccess(String result) {
            dialogBox.setText("Remote Procedure Call");
            serverResponseLabel.removeStyleName("serverResponseLabelError");
            serverResponseLabel.setHTML(result);
            dialogBox.center();
            closeButton.setFocus(true);
          }
        });
View Full Code Here

Examples of com.google.gwt.user.client.ui.HTML.removeStyleName()

                closeButton.setFocus(true);
              }

              public void onSuccess(String result) {
                dialogBox.setText("Remote Procedure Call");
                serverResponseLabel
                    .removeStyleName("serverResponseLabelError");
                serverResponseLabel.setHTML(result);
                dialogBox.center();
                closeButton.setFocus(true);
              }
View Full Code Here

Examples of com.google.gwt.user.client.ui.HTML.removeStyleName()

                closeButton.setFocus(true);
              }

              public void onSuccess(String result) {
                dialogBox.setText("Remote Procedure Call");
                serverResponseLabel
                    .removeStyleName("serverResponseLabelError");
                serverResponseLabel.setHTML(result);
                dialogBox.center();
                closeButton.setFocus(true);
              }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.