소스 검색

fixes #11437 for V7 (#11588)

tags/7.7.21
Olli Tietäväinen 5 년 전
부모
커밋
ca00a8a652
No account linked to committer's email address
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6
    1
      client/src/main/java/com/vaadin/client/ui/VFilterSelect.java

+ 6
- 1
client/src/main/java/com/vaadin/client/ui/VFilterSelect.java 파일 보기

@@ -1416,7 +1416,12 @@ public class VFilterSelect extends Composite
* way, and they might be useful in a combo box where new items are
* allowed.
*/
getElement().setAttribute("autocomplete", "nope");
if (BrowserInfo.get().isChrome()) {
// Chrome supports "off" and random number does not work with Chrome
getElement().setAttribute("autocomplete", "off");
} else {
getElement().setAttribute("autocomplete", Math.random() + "");
}
}

/**

Loading…
취소
저장