]> source.dussan.org Git - vaadin-framework.git/commit
Fix mouse wheel scrolling of ComboBox in IE11 (#16918)
authorAnna Koskinen <anna@vaadin.com>
Wed, 25 Feb 2015 11:43:39 +0000 (13:43 +0200)
committerVaadin Code Review <review@vaadin.com>
Tue, 15 Dec 2015 08:48:59 +0000 (08:48 +0000)
commitdace5ab66322c226b2cce79848a9c0518740f020
treecad3d09ba45752b53b805b046fe2557b4bd9d05e
parentb7af23d8dc9529aaf7b80e417725a6d43dc69b7e
Fix mouse wheel scrolling of ComboBox in IE11 (#16918)

IE11 is broken so that the simple implementation always moves up on any
mouse wheel event. Therefore, this change borrows the approach taken by
Escalator for low-level handling of mouse wheel events in a way compatible
with all supported browsers.

Change-Id: I98c89d3ccfeea38d6a454ef708f0eb7d1d3f480c
client/src/com/vaadin/client/ui/JsniMousewheelHandler.java [new file with mode: 0644]
client/src/com/vaadin/client/ui/VFilterSelect.java
uitest/src/com/vaadin/tests/components/combobox/ComboBoxMousewheel.java [new file with mode: 0644]