Codota Logo
Element.setTabIndex
Code IndexAdd Codota to your IDE (free)

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

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

  • Common ways to obtain Element
private void myMethod () {
Element e =
  • Codota IconDOM.createDiv()
  • Codota IconDOM.createTR()
  • Codota IconDOM.createTable()
  • Smart code suggestions by Codota
}
origin: com.google.gwt/gwt-servlet

DateCell(boolean isWeekend) {
 super(new Date());
 cellStyle = css().day();
 if (isWeekend) {
  cellStyle += " " + css().dayIsWeekend();
 }
 getElement().setTabIndex(isFiller() ? -1 : 0);
 setAriaSelected(false);
}
origin: com.google.gwt/gwt-servlet

void update(Date current) {
 setEnabled(true);
 getValue().setTime(current.getTime());
 String value = getModel().formatDayOfMonth(getValue());
 setText(value);
 dateStyle = cellStyle;
 if (isFiller()) {
  getElement().setTabIndex(-1);
  dateStyle += " " + css().dayIsFiller();
 } else {
  getElement().setTabIndex(0);
  String extraStyle = getDatePicker().getStyleOfDate(current);
  if (extraStyle != null) {
   dateStyle += " " + extraStyle;
  }
 }
 // We want to certify that all date styles have " " before and after
 // them for ease of adding to and replacing them.
 dateStyle += " ";
 updateStyle();
}
origin: com.google.gwt/gwt-servlet

scrollable.getElement().setTabIndex(-1);
final Widget pager = createPager(view);
if (pager != null) {
origin: org.gwtbootstrap3/gwtbootstrap3

@Override
public void setTabIndex(final int index) {
  uiObject.getElement().setTabIndex(index);
}
origin: GwtMaterialDesign/gwt-material

@Override
public void setTabIndex(final int index) {
  uiObject.getElement().setTabIndex(index);
}
origin: org.jboss.ballroom/widgets

public DefaultButton(String title) {
  super(title);
  addStyleName("default-button");
  getElement().setTabIndex(0);
}
origin: org.jboss.ballroom/widgets

  public DefaultButton(String title, ClickHandler handler) {
    this(title);
    addClickHandler(handler);
    getElement().setTabIndex(0);
  }
}
origin: org.jboss.ballroom/widgets

public ToolButton(String title, ClickHandler handler) {
  this(title);
  addClickHandler(handler);
  getElement().setTabIndex(0);
}
origin: org.jboss.ballroom/widgets

public ToolButton(String title) {
  super(title);
  //addStyleName("default-button");
  addStyleName("toolstrip-button");
  getElement().setTabIndex(0);
}
origin: org.jboss.ballroom/widgets

public StatusItem(String name, String title) {
  super(name, title);
  this.widget = new Label();
  this.widget.getElement().setTabIndex(0);
}
origin: com.haulmont.cuba/cuba-web-toolkit

@Override
public void setTextFieldEnabled(boolean textFieldEnabled) {
  super.setTextFieldEnabled(textFieldEnabled);
  calendarToggle.getElement().setTabIndex(-1);
}
origin: org.eclipse.che.core/che-core-ide-app

/** Create view. */
@Inject
public NotificationManagerViewImpl(NotificationManagerViewImplUiBinder uiBinder) {
 setContentWidget(uiBinder.createAndBindUi(this));
 scrollPanel.getElement().setTabIndex(0);
}
origin: com.haulmont.cuba/cuba-web-toolkit

public CubaGridLayoutWidget() {
  super();
  getElement().setTabIndex(-1);
  DOM.sinkEvents(getElement(), Event.ONKEYDOWN);
}
origin: com.haulmont.cuba/cuba-web-toolkit

public CubaCssActionsLayoutWidget() {
  super();
  getElement().setTabIndex(-1);
  DOM.sinkEvents(getElement(), Event.ONKEYDOWN);
}
origin: com.haulmont.cuba/cuba-web-toolkit

public CubaOrderedActionsLayoutWidget(String className, boolean vertical) {
  super(vertical);
  getElement().setTabIndex(-1);
  setStyleName(className);
  DOM.sinkEvents(getElement(), Event.ONKEYDOWN);
}
origin: net.wetheinter/gwt-user

DateCell(boolean isWeekend) {
 super(new Date());
 cellStyle = css().day();
 if (isWeekend) {
  cellStyle += " " + css().dayIsWeekend();
 }
 getElement().setTabIndex(isFiller() ? -1 : 0);
 setAriaSelected(false);
}
origin: org.jboss.ballroom/widgets

public InlineLink(String title) {
  super("<a href='javascript:void(0)' aria-label='"+ SafeHtmlUtils.htmlEscape(title)+"' style='vertical-align:bottom;'>"+title+"</a>");
  getElement().setTabIndex(0);
  this.sinkEvents(Event.ONKEYDOWN);
  this.sinkEvents(Event.ONMOUSEDOWN);
  addStyleName("inline-link");
}
origin: com.vaadin.external.gwt/gwt-user

DateCell(boolean isWeekend) {
 super(new Date());
 cellStyle = css().day();
 if (isWeekend) {
  cellStyle += " " + css().dayIsWeekend();
 }
 getElement().setTabIndex(isFiller() ? -1 : 0);
 setAriaSelected(false);
}
origin: com.vaadin.addon/vaadin-touchkit-agpl

public VNavigationManager() {
  setElement(Document.get().createDivElement());
  setStyleName(CLASSNAME);
  wrapper.setClassName(WRAPPER_CLASSNAME);
  getElement().appendChild(wrapper);
  hookTransitionEndListener(Css3Propertynames.transitionEnd(),
      wrapper);
  getElement().setTabIndex(-1);
}
origin: org.eclipse.che.core/che-core-ide-ui

CompositeWindowView() {
 windowWidth = getClientWidth();
 clientLeft = Document.get().getBodyOffsetLeft();
 clientTop = Document.get().getBodyOffsetTop();
 initView();
 initEventHandlers();
 sinkEvents(Event.ONMOUSEDOWN | Event.KEYEVENTS | Event.TOUCHEVENTS);
 getElement().setTabIndex(0);
 getElement().setAttribute("hideFocus", "true");
}
com.google.gwt.user.clientElementsetTabIndex

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

  • Making http post requests using okhttp
  • scheduleAtFixedRate (ScheduledExecutorService)
  • putExtra (Intent)
  • startActivity (Activity)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • URLConnection (java.net)
    The abstract class URLConnection is the superclass of all classes that represent a communications li
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Iterator (java.util)
    An iterator over a collection. Iterator takes the place of Enumeration in the Java Collections Frame
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now