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

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

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

Element.setPropertyString介绍

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

代码示例

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

  1. /**
  2. * Sets the elements css class name.
  3. *
  4. * @param elem the element
  5. * @param className the class name
  6. */
  7. static final void setClassname(final Element elem, final String className) {
  8. elem.setPropertyString("className", className);
  9. }

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

  1. @Override
  2. public void onDetach() {
  3. panel.container.setPropertyString("onresize", null);
  4. }

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

  1. /**
  2. * Sets the width of the table's border. This border is displayed around all
  3. * cells in the table.
  4. *
  5. * @param width the width of the border, in pixels
  6. */
  7. public void setBorderWidth(int width) {
  8. tableElem.setPropertyString("border", "" + width);
  9. }

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

  1. /**
  2. * Sets the width of the border to be applied to all cells in this panel. This
  3. * is particularly useful when debugging layouts, in that it allows you to see
  4. * explicitly the cells that contain this panel's children.
  5. *
  6. * @param width the width of the panel's cell borders, in pixels
  7. */
  8. public void setBorderWidth(int width) {
  9. table.setPropertyString("border", "" + width);
  10. }

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

  1. public void setText(String text) {
  2. elem.setPropertyString("value", text);
  3. }

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

  1. /**
  2. * Sets a 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
  7. * @deprecated Use {@link Element#setPropertyString(String, String)} instead.
  8. */
  9. @Deprecated
  10. public static void setElementProperty(Element elem, String prop, String value) {
  11. elem.setPropertyString(prop, value);
  12. }

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

  1. /**
  2. * Sets a 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 new property value
  7. * @deprecated Use the more appropriately named
  8. * {@link Element#setPropertyString(String, String)} instead.
  9. */
  10. @Deprecated
  11. public static void setAttribute(Element elem, String attr, String value) {
  12. elem.setPropertyString(attr, value);
  13. }

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

  1. /**
  2. * Sets the width of the specified column.
  3. *
  4. * @param column the column of the cell whose width is to be set
  5. * @param width the cell's new width, in percentage or pixel units
  6. * @throws IndexOutOfBoundsException
  7. */
  8. public void setWidth(int column, String width) {
  9. ensureColumn(column).setPropertyString("width", width);
  10. }

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

  1. @Override
  2. public Element createElement() {
  3. Element elem = super.createElement();
  4. elem.setPropertyString("src", "about:blank");
  5. return elem;
  6. }

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

  1. /**
  2. * Sets the height of the cell associated with the given widget, related to
  3. * the panel as a whole.
  4. *
  5. * @param w the widget whose cell height is to be set
  6. * @param height the cell's height, in CSS units
  7. */
  8. public void setCellHeight(Widget w, String height) {
  9. Element td = getWidgetTd(w);
  10. if (td != null) {
  11. td.setPropertyString("height", height);
  12. }
  13. }

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

  1. public void setHTML(@IsSafeHtml String html) {
  2. elem.setPropertyString("value", html);
  3. }

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

  1. /**
  2. * Sets the width of the cell associated with the given widget, related to the
  3. * panel as a whole.
  4. *
  5. * @param w the widget whose cell width is to be set
  6. * @param width the cell's width, in CSS units
  7. */
  8. public void setCellWidth(Widget w, String width) {
  9. Element td = getWidgetTd(w);
  10. if (td != null) {
  11. td.setPropertyString("width", width);
  12. }
  13. }

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

  1. /**
  2. * Sets the height of the specified cell.
  3. *
  4. * @param row the row of the cell whose height is to be set
  5. * @param column the column of the cell whose height is to be set
  6. * @param height the cell's new height, in CSS units
  7. * @throws IndexOutOfBoundsException
  8. */
  9. public void setHeight(int row, int column, String height) {
  10. prepareCell(row, column);
  11. Element elem = getCellElement(bodyElem, row, column);
  12. elem.setPropertyString("height", height);
  13. }

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

  1. /**
  2. * Sets the width of the specified cell.
  3. *
  4. * @param row the row of the cell whose width is to be set
  5. * @param column the column of the cell whose width is to be set
  6. * @param width the cell's new width, in CSS units
  7. * @throws IndexOutOfBoundsException
  8. */
  9. public void setWidth(int row, int column, String width) {
  10. // Give the subclass a chance to prepare the cell.
  11. prepareCell(row, column);
  12. getCellElement(bodyElem, row, column).setPropertyString("width", width);
  13. }

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

  1. /**
  2. * Sets the history token referenced by this hyperlink. This is the history
  3. * token that will be passed to {@link History#newItem} when this link is
  4. * clicked.
  5. *
  6. * @param targetHistoryToken the new history token, which may not be null (use
  7. * {@link Anchor} instead if you don't need history processing)
  8. */
  9. @SuppressIsSafeUriCastCheck //TODO(bangert): Refactor setPropertyString
  10. public void setTargetHistoryToken(String targetHistoryToken) {
  11. assert targetHistoryToken != null
  12. : "targetHistoryToken must not be null, consider using Anchor instead";
  13. this.targetHistoryToken = targetHistoryToken;
  14. String hash = History.encodeHistoryToken(targetHistoryToken);
  15. anchorElem.setPropertyString("href", "#" + hash);
  16. }

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

  1. /**
  2. * Sets the horizontal alignment of the specified cell.
  3. *
  4. * @param row the row of the cell whose alignment is to be set
  5. * @param column the column of the cell whose alignment is to be set
  6. * @param align the cell's new horizontal alignment as specified in
  7. * {@link HasHorizontalAlignment}.
  8. * @throws IndexOutOfBoundsException
  9. */
  10. public void setHorizontalAlignment(int row, int column,
  11. HorizontalAlignmentConstant align) {
  12. prepareCell(row, column);
  13. Element elem = getCellElement(bodyElem, row, column);
  14. elem.setPropertyString("align", align.getTextAlignString());
  15. }

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

  1. @Override
  2. public void ensureDebugId(Element elem, String baseID, String id) {
  3. assert baseID != null;
  4. baseID = (baseID.length() > 0) ? baseID + "-" : "";
  5. String prefix = DebugInfo.getDebugIdPrefix();
  6. String debugId = ((prefix == null) ? "" : prefix) + baseID + id;
  7. String attribute = DebugInfo.getDebugIdAttribute();
  8. if (DebugInfo.isDebugIdAsProperty()) {
  9. elem.setPropertyString(attribute, debugId);
  10. } else {
  11. elem.setAttribute(attribute, debugId);
  12. }
  13. }
  14. }

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

  1. private static void dispatchUnhandledEvent(Event evt) {
  2. Element element = evt.getCurrentEventTarget().cast();
  3. element.setPropertyString("__gwtLastUnhandledEvent", evt.getType());
  4. dispatchEvent(evt);
  5. }

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

  1. @SuppressIsSafeUriCastCheck //TODO(bangert): refactor away setproperty.
  2. private ClickableHeader() {
  3. // Anchor is used to allow keyboard access.
  4. super(DOM.createAnchor());
  5. Element elem = getElement();
  6. elem.setPropertyString("href", "javascript:void(0);");
  7. // Avoids layout problems from having blocks in inlines.
  8. elem.getStyle().setProperty("display", "block");
  9. sinkEvents(Event.ONCLICK);
  10. setStyleName(STYLENAME_HEADER);
  11. }

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

  1. private DefaultHeader(Imager imager, String text) {
  2. this.imager = imager;
  3. iconImage = imager.makeImage();
  4. // I do not need any Widgets here, just a DOM structure.
  5. Element root = DOM.createTable();
  6. Element tbody = DOM.createTBody();
  7. Element tr = DOM.createTR();
  8. final Element imageTD = DOM.createTD();
  9. labelTD = DOM.createTD();
  10. setElement(root);
  11. DOM.appendChild(root, tbody);
  12. DOM.appendChild(tbody, tr);
  13. DOM.appendChild(tr, imageTD);
  14. DOM.appendChild(tr, labelTD);
  15. // set image TD to be same width as image.
  16. imageTD.setPropertyString("align", "center");
  17. imageTD.setPropertyString("valign", "middle");
  18. imageTD.getStyle().setProperty("width", iconImage.getWidth() + "px");
  19. DOM.appendChild(imageTD, iconImage.getElement());
  20. setText(text);
  21. addOpenHandler(this);
  22. addCloseHandler(this);
  23. setStyle();
  24. }

相关文章

Element类方法