com.google.gwt.user.client.ui.CheckBox.addStyleName()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(3.4k)|赞(0)|评价(0)|浏览(170)

本文整理了Java中com.google.gwt.user.client.ui.CheckBox.addStyleName()方法的一些代码示例,展示了CheckBox.addStyleName()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。CheckBox.addStyleName()方法的具体详情如下:
包路径:com.google.gwt.user.client.ui.CheckBox
类名称:CheckBox
方法名:addStyleName

CheckBox.addStyleName介绍

暂无

代码示例

代码示例来源:origin: kaaproject/kaa

/**
 * Instantiates a new CtlSchemasViewImpl.
 */
public CtlSchemasViewImpl() {
 super(true);
 if (displayShowHigherLevelScopeCheckBox()) {
  showHigherScopeCheckBox = new CheckBox(Utils.constants.displayHigherScopes());
  showHigherScopeCheckBox.addStyleName(Utils.kaaAdminStyle.bAppContentTitle());
  Element.as(showHigherScopeCheckBox.getElement().getChild(0))
    .getStyle().setMarginRight(10, Unit.PX);
  showHigherScopeCheckBox.setValue(defaultShowHigherLevelScopes());
  appendToolbarWidget(showHigherScopeCheckBox);
 }
}

代码示例来源:origin: stackoverflow.com

CheckBox cb1= new CheckBox();
 cb1.addStyleName("huge");

代码示例来源:origin: info.magnolia.ui/magnolia-ui-vaadin-common-widgets

public MagnoliaTableHead() {
  super();
  selectAll = new CheckBox();
  selectAll.addValueChangeHandler(new ValueChangeHandler<Boolean>() {
    @Override
    public void onValueChange(ValueChangeEvent<Boolean> event) {
      client.updateVariable(paintableId, "selectAll", event.getValue(), true);
    }
  });
  selectAll.addStyleName("v-select-all");
}

代码示例来源:origin: org.geomajas.plugin/geomajas-client-gwt2-plugin-corewidget

public LayerControlPanelViewImpl(LayerControlPanelResource layerControlPanelResource) {
  resource = layerControlPanelResource;
  widget = (HorizontalPanel) UIBINDER.createAndBindUi(this);
  widget.setStyleName(layerControlPanelResource.css().layerControlPanel());
  title.setStyleName(layerControlPanelResource.css().layerControlPanelTitle());
  visibilityToggle.addStyleName(layerControlPanelResource.css().layerControlPanelToggle());
  resource.css().ensureInjected();
  bindEvents();
}

代码示例来源:origin: org.eclipse.che.core/che-core-ide-app

hideCheckBox.addStyleName(resources.cellTableStyle().cellTableHideServersCheckBox());
hideCheckBox.ensureDebugId("runtimeInfoHideServersCheckBox");

代码示例来源:origin: info.magnolia.ui/magnolia-ui-vaadin-common-widgets

selectionCheckBox.addStyleName("v-selection-cb");
getChildren().add(selectionCheckBox);
VMagnoliaTable.this.adopt(selectionCheckBox);

代码示例来源:origin: org.eclipse.che.plugin/che-plugin-git-ext-git

/** Create view. */
@Inject
protected CommitViewImpl(GitResources res, GitLocalizationConstant locale) {
 this.res = res;
 this.locale = locale;
 this.message = new ShiftableTextArea();
 this.ensureDebugId("git-commit-window");
 this.setTitle(locale.commitTitle());
 Widget widget = uiBinder.createAndBindUi(this);
 this.setWidget(widget);
 btnCancel =
   addFooterButton(
     locale.buttonCancel(), "git-commit-cancel", event -> delegate.onCancelClicked());
 btnCommit =
   addFooterButton(
     locale.buttonCommit(), "git-commit-commit", event -> delegate.onCommitClicked(), true);
 remoteBranches = new ListBox();
 remoteBranches.setEnabled(false);
 remoteBranches.getElement().setAttribute("style", "width: 230px");
 pushAfterCommit = new CheckBox();
 pushAfterCommit.setHTML(locale.commitPushCheckboxTitle());
 pushAfterCommit.ensureDebugId("push-after-commit-check-box");
 pushAfterCommit.addValueChangeHandler(event -> remoteBranches.setEnabled(event.getValue()));
 pushAfterCommit.addStyleName(res.gitCSS().spacing());
 addFooterWidget(pushAfterCommit);
 addFooterWidget(remoteBranches);
}

相关文章