com.google.gwt.dom.client.Element.setPropertyBoolean()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(5.7k)|赞(0)|评价(0)|浏览(234)

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

Element.setPropertyBoolean介绍

[英]Sets a boolean property on this element.
[中]设置此元素的布尔属性。

代码示例

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. public void setEnabled(boolean enabled) {
  2. elem.setPropertyBoolean("disabled", !enabled);
  3. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Sets a boolean property on the given element.
  3. *
  4. * @param elem the element whose property is to be set
  5. * @param prop the name of the property to be set
  6. * @param value the new property value as a boolean
  7. * @deprecated Use {@link Element#setPropertyBoolean(String, boolean)} instead.
  8. */
  9. @Deprecated
  10. public static void setElementPropertyBoolean(Element elem, String prop,
  11. boolean value) {
  12. elem.setPropertyBoolean(prop, value);
  13. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Sets a boolean property on the given element.
  3. *
  4. * @param elem the element whose property is to be set
  5. * @param attr the name of the property to be set
  6. * @param value the property's new boolean value
  7. * @deprecated Use the more appropriately named
  8. * {@link Element#setPropertyBoolean(String, boolean)}
  9. * instead.
  10. */
  11. @Deprecated
  12. public static void setBooleanAttribute(Element elem, String attr,
  13. boolean value) {
  14. elem.setPropertyBoolean(attr, value);
  15. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. @Override
  2. public void setEnabled(boolean enabled) {
  3. if (beforeInitPlaceholder == null) {
  4. setEnabledImpl(enabled);
  5. } else {
  6. beforeInitPlaceholder.setPropertyBoolean("disabled", !enabled);
  7. }
  8. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. public void setEnabled(boolean enabled) {
  2. elem.setPropertyBoolean("disabled", !enabled);
  3. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. public void setEnabled(boolean enabled) {
  2. elem.setPropertyBoolean("disabled", !enabled);
  3. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Sets a boolean property on the given element.
  3. *
  4. * @param elem the element whose property is to be set
  5. * @param prop the name of the property to be set
  6. * @param value the new property value as a boolean
  7. * @deprecated Use {@link Element#setPropertyBoolean(String, boolean)} instead.
  8. */
  9. @Deprecated
  10. public static void setElementPropertyBoolean(Element elem, String prop,
  11. boolean value) {
  12. elem.setPropertyBoolean(prop, value);
  13. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Sets a boolean property on the given element.
  3. *
  4. * @param elem the element whose property is to be set
  5. * @param prop the name of the property to be set
  6. * @param value the new property value as a boolean
  7. * @deprecated Use {@link Element#setPropertyBoolean(String, boolean)} instead.
  8. */
  9. @Deprecated
  10. public static void setElementPropertyBoolean(Element elem, String prop,
  11. boolean value) {
  12. elem.setPropertyBoolean(prop, value);
  13. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Sets a boolean property on the given element.
  3. *
  4. * @param elem the element whose property is to be set
  5. * @param attr the name of the property to be set
  6. * @param value the property's new boolean value
  7. * @deprecated Use the more appropriately named
  8. * {@link Element#setPropertyBoolean(String, boolean)}
  9. * instead.
  10. */
  11. @Deprecated
  12. public static void setBooleanAttribute(Element elem, String attr,
  13. boolean value) {
  14. elem.setPropertyBoolean(attr, value);
  15. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Sets a boolean property on the given element.
  3. *
  4. * @param elem the element whose property is to be set
  5. * @param attr the name of the property to be set
  6. * @param value the property's new boolean value
  7. * @deprecated Use the more appropriately named
  8. * {@link Element#setPropertyBoolean(String, boolean)}
  9. * instead.
  10. */
  11. @Deprecated
  12. public static void setBooleanAttribute(Element elem, String attr,
  13. boolean value) {
  14. elem.setPropertyBoolean(attr, value);
  15. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. @Override
  2. public void setEnabled(boolean enabled) {
  3. if (beforeInitPlaceholder == null) {
  4. setEnabledImpl(enabled);
  5. } else {
  6. beforeInitPlaceholder.setPropertyBoolean("disabled", !enabled);
  7. }
  8. }

代码示例来源:origin: org.jbpm/jbpm-console-ng-generic-client

  1. /**
  2. * It's enough to just set the disabled attribute on the
  3. * element, but we want to also add a "disabled" class so that we can
  4. * style it.
  5. *
  6. * At some point we'll just be able to use .button:disabled,
  7. * but that doesn't work in IE8-
  8. */
  9. public static void setEnabled(Element element, boolean enabled) {
  10. element.setPropertyBoolean("disabled", !enabled);
  11. setStyleName(element, "disabled", !enabled);
  12. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. @Override
  2. public void setEnabled(boolean enabled) {
  3. if (beforeInitPlaceholder == null) {
  4. setEnabledImpl(enabled);
  5. } else {
  6. beforeInitPlaceholder.setPropertyBoolean("disabled", !enabled);
  7. }
  8. }

代码示例来源:origin: kiegroup/jbpm-wb

  1. /**
  2. * It's enough to just set the disabled attribute on the
  3. * element, but we want to also add a "disabled" class so that we can
  4. * style it.
  5. * <p>
  6. * At some point we'll just be able to use .button:disabled,
  7. * but that doesn't work in IE8-
  8. */
  9. public static void setEnabled(Element element,
  10. boolean enabled) {
  11. element.setPropertyBoolean("disabled",
  12. !enabled);
  13. setStyleName(element,
  14. "disabled",
  15. !enabled);
  16. }

代码示例来源:origin: com.googlecode.gwtquery/gwtquery

  1. public void setAttribute(Element e, String key, Object value) {
  2. if (JsUtils.hasProperty(e, key)) {
  3. e.setPropertyBoolean(key, true);
  4. }
  5. super.setAttribute(e, key, key.toLowerCase());
  6. }
  7. }

代码示例来源:origin: com.googlecode.gwtquery/gwtquery

  1. public void removeAttribute(GQuery gQuery, String key) {
  2. for (Element e : gQuery.elements()) {
  3. if (e.getNodeType() != 1) {
  4. continue;
  5. }
  6. if (JsUtils.hasProperty(e, key)) {
  7. if (BOOLEAN_ATTR_REGEX.test(key)) {
  8. e.setPropertyBoolean(key, false);
  9. } else {
  10. e.setPropertyObject(key, null);
  11. }
  12. }
  13. e.removeAttribute(key);
  14. }
  15. }

代码示例来源:origin: com.sencha.gxt/gxt-chart

  1. fill.setPropertyBoolean("on", false);
  2. } else {
  3. if (sprite.isFillDirty() || ignoreOptimizations) {
  4. fill.setPropertyBoolean("on", true);
  5. if (sprite.getFill() instanceof Gradient) {
  6. Gradient gradient = (Gradient) sprite.getFill();

代码示例来源:origin: com.sencha.gxt/gxt-chart

  1. stroke.setPropertyBoolean("on", false);
  2. } else {
  3. stroke.setPropertyBoolean("on", true);

相关文章

Element类方法