Tabnine Logo
Element.setTitle
Code IndexAdd Tabnine to your IDE (free)

How to use
setTitle
method
in
com.google.gwt.user.client.Element

Best Java code snippets using com.google.gwt.user.client.Element.setTitle (Showing top 16 results out of 315)

origin: com.extjs/gxt

/**
 * Sets the element's title property.
 * 
 * @param title the new title
 * @return this
 */
public El setTitle(String title) {
 dom.setTitle(title);
 return this;
}
origin: stackoverflow.com

versionElement.setTitle("Version 6.2");
adsElement.setTitle("Advertise with us");
origin: stackoverflow.com

versionElement.setTitle("Version 6.2");
adsElement.setTitle("Advertise with us");
origin: com.extjs/gxt

 @Override
 protected void afterRender() {
  super.afterRender();
  if (GXT.isAriaEnabled()) buttonEl.dom.setTitle(tt);
 }
};
origin: com.extjs/gxt

 @Override
 protected void afterRender() {
  super.afterRender();
  if (GXT.isAriaEnabled()) buttonEl.dom.setTitle(tt);
 }
};
origin: org.guvnor/guvnor-structure-client

  protected void setCopyRepositoryUrlTitle() {
    getElement().setTitle(CommonConstants.INSTANCE.copyRepositoryUrl());
  }
}
origin: kiegroup/appformer

  protected void setCopyRepositoryUrlTitle() {
    getElement().setTitle(CommonConstants.INSTANCE.copyRepositoryUrl());
  }
}
origin: org.eclipse.hawkbit/hawkbit-ui

@Override
public void render(RendererCellReference cell, String input, VLabel label) {
  Map<String, String> map = formatInput(input);
  String value = map.containsKey("value") ? map.get("value") : null;
  String style = map.containsKey("style") ? map.get("style") : null;
  String title = map.containsKey("title") ? map.get("title") : null;
  String id = map.containsKey("id") ? map.get("id") : null;
  if (value != null) {
    label.setHTML("<span>&#x" + Integer.toHexString(Integer.parseInt(value)) + ";</span>");
  } else {
    label.setHTML("<span></span>");
  }
  applyStyle(label, style);
  label.getElement().setId(id);
  label.getElement().setTitle(title);
}
origin: eclipse/hawkbit

@Override
public void render(RendererCellReference cell, String input, VLabel label) {
  Map<String, String> map = formatInput(input);
  String value = map.containsKey("value") ? map.get("value") : null;
  String style = map.containsKey("style") ? map.get("style") : null;
  String title = map.containsKey("title") ? map.get("title") : null;
  String id = map.containsKey("id") ? map.get("id") : null;
  if (value != null) {
    label.setHTML("<span>&#x" + Integer.toHexString(Integer.parseInt(value)) + ";</span>");
  } else {
    label.setHTML("<span></span>");
  }
  applyStyle(label, style);
  label.getElement().setId(id);
  label.getElement().setTitle(title);
}
origin: org.kuali.student.core/ks-common-ui

public AbbrPanel(String title, String className){
  Element abbr = DOM.createElement("abbr");
  abbr.setTitle(title);
  abbr.setClassName(className);
  this.setElement(abbr);
}
origin: org.kuali.student.core/ks-common-ui

public AbbrPanel(String title, String className, String text){
  Element abbr = DOM.createElement("abbr");
  abbr.setTitle(title);
  abbr.setClassName(className);
  abbr.setInnerText(text);
  this.setElement(abbr);
}
origin: com.extjs/gxt

 private void handleRadioGroups() {
  clearGroups();
  for (int i = 0; i < getItemCount(); i++) {
   Object obj = getItem(i);
   if (obj instanceof CheckMenuItem) {
    CheckMenuItem check = (CheckMenuItem) obj;
    if (check.getGroup() != null) {
     El g = getGroup(check.getGroup());
     Accessibility.setState(g.dom, "aria-owns", g.dom.getAttribute("aria-owns") + " " + check.getId());
     if (check.getAriaGroupTitle() != null) {
      g.dom.setTitle(check.getAriaGroupTitle());
     }
    }
   }
  }
 }
}
origin: eclipse/hawkbit

@Override
public void render(final RendererCellReference cell, final FontIconData iconMetadata, final Button button) {
  if (iconMetadata.getFontIconHtml() != null) {
    button.setHTML(iconMetadata.getFontIconHtml());
  }
  applyStyles(button, iconMetadata.isDisabled(), iconMetadata.getStyle());
  button.getElement().setId(iconMetadata.getId());
  button.getElement().setTitle(iconMetadata.getTitle());
  button.setEnabled(!iconMetadata.isDisabled());
  // this is to allow the button to disappear, if the text is null
  button.setVisible(iconMetadata.getFontIconHtml() != null);
}
origin: org.eclipse.hawkbit/hawkbit-ui

@Override
public void render(final RendererCellReference cell, final FontIconData iconMetadata, final Button button) {
  if (iconMetadata.getFontIconHtml() != null) {
    button.setHTML(iconMetadata.getFontIconHtml());
  }
  applyStyles(button, iconMetadata.isDisabled(), iconMetadata.getStyle());
  button.getElement().setId(iconMetadata.getId());
  button.getElement().setTitle(iconMetadata.getTitle());
  button.setEnabled(!iconMetadata.isDisabled());
  // this is to allow the button to disappear, if the text is null
  button.setVisible(iconMetadata.getFontIconHtml() != null);
}
origin: com.extjs/gxt

fly(cell).addStyleName("x-date-disabled");
if (t > max)
 cell.setTitle(messages.getMaxText());
else
 cell.setTitle(messages.getMinText());        
origin: com.extjs/gxt

h.getElement().removeAttribute("aria-haspopup");
if (GXT.isAriaEnabled()) {
 h.getElement().setTitle(headerCheckTitle);
com.google.gwt.user.clientElementsetTitle

Popular methods of Element

  • getStyle
  • setAttribute
  • appendChild
  • setId
  • getParentElement
  • cast
  • setInnerText
  • getId
  • setInnerHTML
  • addClassName
  • getAttribute
  • getInnerHTML
  • getAttribute,
  • getInnerHTML,
  • getFirstChildElement,
  • getInnerText,
  • getClientWidth,
  • removeChild,
  • getChildCount,
  • getOffsetHeight,
  • removeAttribute,
  • removeClassName

Popular in Java

  • Updating database using SQL prepared statement
  • runOnUiThread (Activity)
  • compareTo (BigDecimal)
  • onCreateOptionsMenu (Activity)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now