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

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

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

Element.focus介绍

[英]Gives keyboard focus to this element.
[中]为该元素提供键盘焦点。

代码示例

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

  1. @Override
  2. public void execute() {
  3. focusable.focus();
  4. }
  5. });

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

  1. public void focus(Element elem) {
  2. elem.focus();
  3. }

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

  1. public void onClose(CloseEvent<PopupPanel> event) {
  2. lastKey = null;
  3. lastValue = null;
  4. lastIndex = -1;
  5. lastColumn = -1;
  6. if (lastParent != null && !event.isAutoClosed()) {
  7. // Refocus on the containing cell after the user selects a value, but
  8. // not if the popup is auto closed.
  9. lastParent.focus();
  10. }
  11. lastParent = null;
  12. }
  13. });

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

  1. @Override
  2. public void execute() {
  3. if (!hasData.resetFocusOnCell()) {
  4. Element elem = hasData.getKeyboardSelectedElement();
  5. if (elem != null) {
  6. elem.focus();
  7. }
  8. }
  9. }
  10. });

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

  1. @Override
  2. public boolean resetFocus(Context context, Element parent, C value) {
  3. if (isEditing(context, parent, value)) {
  4. getInputElement(parent).focus();
  5. return true;
  6. }
  7. return false;
  8. }

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

  1. @Override
  2. public void setFocus(boolean focused) {
  3. Element elem = getKeyboardSelectedElement();
  4. if (elem != null) {
  5. if (focused) {
  6. elem.focus();
  7. } else {
  8. elem.blur();
  9. }
  10. }
  11. }

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

  1. @Override
  2. public void setFocus(Element parent, boolean focused) {
  3. Element focusable = parent.getFirstChildElement().cast();
  4. if (focused) {
  5. focusable.focus();
  6. } else {
  7. focusable.blur();
  8. }
  9. }
  10. }

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

  1. @Override
  2. protected void setKeyboardSelected(int index, boolean selected, boolean stealFocus) {
  3. if (!isRowWithinBounds(index)) {
  4. return;
  5. }
  6. Element elem = getRowElement(index);
  7. if (!selected || isFocused || stealFocus) {
  8. setStyleName(elem, style.cellListKeyboardSelectedItem(), selected);
  9. }
  10. setFocusable(elem, selected);
  11. if (selected && stealFocus && !cellIsEditing) {
  12. elem.focus();
  13. onFocus();
  14. }
  15. }

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

  1. @Override
  2. protected void onEnterKeyDown(Context context, Element parent, C value,
  3. NativeEvent event, ValueUpdater<C> valueUpdater) {
  4. Element input = getInputElement(parent);
  5. Element target = event.getEventTarget().cast();
  6. Object key = context.getKey();
  7. if (getInputElement(parent).isOrHasChild(target)) {
  8. finishEditing(parent, value, key, valueUpdater);
  9. } else {
  10. focusedKey = key;
  11. input.focus();
  12. }
  13. }
  14. }

代码示例来源:origin: org.jboss.ballroom/widgets

  1. @Override
  2. public void execute() {
  3. lastFocus.focus();
  4. }
  5. }

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

  1. @Override
  2. public void execute() {
  3. focusable.focus();
  4. }
  5. });

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

  1. @Override
  2. public void execute() {
  3. focusable.focus();
  4. }
  5. });

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

  1. cellParent.focus();

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

  1. @Override
  2. public void execute() {
  3. if (!hasData.resetFocusOnCell()) {
  4. Element elem = hasData.getKeyboardSelectedElement();
  5. if (elem != null) {
  6. elem.focus();
  7. }
  8. }
  9. }
  10. });

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

  1. @Override
  2. public boolean resetFocus(Context context, Element parent, C value) {
  3. if (isEditing(context, parent, value)) {
  4. getInputElement(parent).focus();
  5. return true;
  6. }
  7. return false;
  8. }

代码示例来源:origin: com.haulmont.cuba/cuba-web-toolkit

  1. @Override
  2. protected void queueUploadStop() {
  3. if (progressWindow != null) {
  4. progressWindow.hide();
  5. progressWindow = null;
  6. }
  7. getFileInputElement().focus();
  8. if (queueUploadListener != null) {
  9. queueUploadListener.uploadFinished();
  10. }
  11. }

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

  1. @Override
  2. public void setFocus(Element parent, boolean focused) {
  3. Element focusable = parent.getFirstChildElement().cast();
  4. if (focused) {
  5. focusable.focus();
  6. } else {
  7. focusable.blur();
  8. }
  9. }
  10. }

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

  1. /**
  2. * Bind a set of functions to the focus event of each matched element. Or trigger the event and
  3. * move the input focus to the first element if no functions are provided.
  4. */
  5. public GQuery focus(Function... f) {
  6. bindOrFire(Event.ONFOCUS, null, f);
  7. if (!isEmpty() && f.length == 0) {
  8. get(0).focus();
  9. }
  10. return this;
  11. }

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

  1. @Override
  2. public void setFocus(Element parent, boolean focused) {
  3. Element focusable = parent.getFirstChildElement().cast();
  4. if (focused) {
  5. focusable.focus();
  6. } else {
  7. focusable.blur();
  8. }
  9. }
  10. }

代码示例来源:origin: org.kuali.student.core/ks-common-ui

  1. private void grabFocus() {
  2. Widget mainContent = contentPanel.getWidget();
  3. NodeList<Element> nodeList = mainContent.getElement().getElementsByTagName("*");
  4. for (int i = 0; i < nodeList.getLength(); i++) {
  5. Element e = nodeList.getItem(i);
  6. if (FOCUSABLE_TAGS.contains(e.getTagName().toUpperCase())) {
  7. e.focus();
  8. return;
  9. }
  10. }
  11. }

相关文章

Element类方法