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

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

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

Element.blur介绍

[英]Removes keyboard focus from this element.
[中]从此元素中删除键盘焦点。

代码示例

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

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

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

  1. /**
  2. * Call this method when editing is complete.
  3. *
  4. * @param parent the parent Element
  5. * @param value the value associated with the cell
  6. * @param key the unique key associated with the row object
  7. * @param valueUpdater the value update to fire
  8. */
  9. protected void finishEditing(Element parent, C value, Object key,
  10. ValueUpdater<C> valueUpdater) {
  11. focusedKey = null;
  12. getInputElement(parent).blur();
  13. }

代码示例来源: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: net.wetheinter/gwt-user

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

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

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

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

  1. /**
  2. * Call this method when editing is complete.
  3. *
  4. * @param parent the parent Element
  5. * @param value the value associated with the cell
  6. * @param key the unique key associated with the row object
  7. * @param valueUpdater the value update to fire
  8. */
  9. protected void finishEditing(Element parent, C value, Object key,
  10. ValueUpdater<C> valueUpdater) {
  11. focusedKey = null;
  12. getInputElement(parent).blur();
  13. }

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

  1. /**
  2. * Call this method when editing is complete.
  3. *
  4. * @param parent the parent Element
  5. * @param value the value associated with the cell
  6. * @param key the unique key associated with the row object
  7. * @param valueUpdater the value update to fire
  8. */
  9. protected void finishEditing(Element parent, C value, Object key,
  10. ValueUpdater<C> valueUpdater) {
  11. focusedKey = null;
  12. getInputElement(parent).blur();
  13. }

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

  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.vaadin.external.gwt/gwt-user

  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.googlecode.gwtquery/gwtquery

  1. /**
  2. * Bind a set of functions to the blur event of each matched element. Or trigger the blur event if
  3. * no functions are provided.
  4. */
  5. public GQuery blur(Function... f) {
  6. bindOrFire(Event.ONBLUR, null, f);
  7. if (!isEmpty() && f.length == 0) {
  8. get(0).blur();
  9. }
  10. return this;
  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: 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: com.haulmont.cuba/cuba-web-toolkit

  1. @Override
  2. public void setFocus(boolean focused) {
  3. if (focused) {
  4. getFileInputElement().focus();
  5. } else {
  6. getFileInputElement().blur();
  7. }
  8. }

代码示例来源:origin: dennisjzh/GwtMobile-UI

  1. /**
  2. * Go home and clear the stack. Just pass "this" from the calling page.
  3. * </br>
  4. * By Frank Mena 2012-04-11
  5. *
  6. * @param fromPage the from page
  7. */
  8. public void goHome(Page fromPage) {
  9. if (false == _history.empty()) {
  10. Page homePage = _history.firstElement();
  11. _history.clear();
  12. Element focus = Utils.getActiveElement();
  13. focus.blur();
  14. final Transition transition = Transition.SLIDE;
  15. transition.start(fromPage, homePage, RootLayoutPanel.get(), true);
  16. }
  17. }

代码示例来源:origin: dennisjzh/GwtMobile-UI

  1. public void collapse() {
  2. this.addStyleName(Secondary.Collapsed);
  3. this.removeStyleName(Secondary.Expanded);
  4. Element focus = Utils.getActiveElement();
  5. focus.blur();
  6. Scheduler.get().scheduleDeferred(new ScheduledCommand() {
  7. @Override
  8. public void execute() {
  9. if (_content != null)
  10. _content.setHeight("0px");
  11. }
  12. });
  13. }

代码示例来源:origin: dennisjzh/GwtMobile-UI

  1. @Override
  2. public void goTo(Page toPage, Object params, Transition transition) {
  3. Element focus = Utils.getActiveElement();
  4. focus.blur();
  5. final Page fromPage = current();
  6. setNavigateInfo(fromPage, params, false);
  7. add(toPage);
  8. toPage.setTransition(transition);
  9. if (transition != null) {
  10. transition.start(fromPage, toPage, RootLayoutPanel.get(), false);
  11. } else {
  12. Transition.start(fromPage, toPage, RootLayoutPanel.get());
  13. }
  14. }

代码示例来源:origin: dennisjzh/GwtMobile-UI

  1. @Override
  2. public void goBack(Object returnValue) {
  3. Page fromPage = back();
  4. setNavigateInfo(fromPage, returnValue, true);
  5. final Page toPage = current();
  6. if (toPage == null) {
  7. // exit app here.
  8. return;
  9. }
  10. Element focus = Utils.getActiveElement();
  11. focus.blur();
  12. final Transition transition = fromPage.getTransition();
  13. if (transition != null) {
  14. transition.start(fromPage, toPage, RootLayoutPanel.get(), true);
  15. }
  16. else {
  17. Transition.start(fromPage, toPage, RootLayoutPanel.get());
  18. }
  19. }

相关文章

Element类方法