mousewheel Questions

3

Solved

UPDATE: Here is a jsbin example demonstrating the problem. UPDATE 2: And here is the fixed version thanks to fudgey. Basically, I have the following javascript which scrolls the window to an a...
Huskey asked 14/5, 2010 at 13:59

2

Solved

This code nearly works but has a slight problem which is where I'm hoping for your help. The Goal: This goal of this script is to call the parseScroll(); function one time when the user wheels u...
Nahamas asked 9/12, 2015 at 3:58

2

Solved

I'm trying to handle the mouseWheel event in an advancedDataGrid with not success. Without any additional code my adg can be scrolled with the mouse in IE but not in firefox and Chrome, why? Why do...
Quatrain asked 30/3, 2011 at 10:35

3

I try to make a mousewheel event script, but getting some issues since I'm using an Apple Magic Mouse and its continue-on-scroll function. I want to do this http://jsfiddle.net/Sg8JQ/ (from jQuery...
Rayner asked 4/10, 2012 at 12:23

5

Solved

I'm developing a Word addin for MS Word on Windows, and this addin has as 'advanced task pane' showing and docking on the left side of the Word document window (it's treeview(outline) showing a lis...
Expectoration asked 5/5, 2011 at 11:18

1

I have implemented drag and drop in a ListView in my WPF application. Items can be dragged and dropped inside the ListView, and also into a TreeView that is beside the ListView. Currently, I have...
Beacon asked 29/5, 2009 at 15:5

3

Solved

...without limiting the scroll inside the iframe or the need to specifically name/tag all scrollable elements. Imagine google maps widget embedded in parent page. When you zoom in the widget you d...
Brut asked 23/8, 2015 at 9:42

1

Solved

While I was working on JavaScript events, I found a troubling element on the wheel event: the deltaZ member. I understood what was deltaX as horizontal scroll (available with some devices like a t...
Mm asked 16/6, 2015 at 8:38

1

Solved

...without limiting the scroll inside the iframe or the need to specifically name the scrollable elements. I have a google-map-like widget that can be embedded in 3rd party websites in the form o...
Hatter asked 27/5, 2015 at 15:26

3

Solved

What I'm attempting to do is move an element while a user scrolls up or down. I have the mechanics of this within a function called goTo(). I am also trying to track where the user is by using a va...
Telescopium asked 28/5, 2014 at 18:17

4

Solved

My client is complaining that JComboBox popups often close when the scroll is being used over a JComboBox popup with no vertical scrollbar. (He seems to accidently use scrolling over it because he ...
Magneto asked 12/4, 2011 at 18:16

2

Solved

I'm looking to detect when a user has scrolled to the bottom of a page and then attempts to continue scrolling but where there's nothing left to scroll/view. I'm creating usability metrics where ...
Butlery asked 27/4, 2015 at 15:58

1

Solved

How to use the mouse wheel to move between listed items in the DBLookupComboBox? Like the way it does in ComboBox. I am using c++builder xe6
Maggiore asked 31/3, 2015 at 15:14

1

Solved

I'm using the fullscreen.js script and in one of my screens I will have a fullscreen Vimeo video. Apparently this will cause issues in FF and prevents me from scrolling up or down as soon as I reac...
Scopophilia asked 30/3, 2015 at 10:45

5

Solved

I know it's possible to detect up and down e.g. function handle(delta) { if (delta < 0) { alert('down'); } else { alert('up'); } } function wheel(event){ var delta = 0; if (!event) even...

7

Solved

Does anyone know of a way to disable the mouse scroll wheel when a control such as a combobox or listbox has focus? For my purposes, combobox is all I need the answer for. I have a combobox set to...
Field asked 3/6, 2010 at 17:8

1

Solved

In xaml code <StackPanel> <ScrollViewer> <local:CustomCanvas> </local:CustomCanvas> </ScrollViewer> </StackPanel> CustomCanvs has a zoom in/out function. ...
Guadalupeguadeloupe asked 19/12, 2014 at 14:38

2

Solved

I have a pretty standard Flexslider instance I'm working on. Flexslider incorporates well with the jquery.mousewheel.js plugin, allowing slides to move on mousewheel events. However, Mac OSX and o...
Kopeck asked 22/7, 2013 at 21:52

3

Solved

I have two pages, these are the conditions I cannot achieve, please let me know if it is not possible. In one page, I need to disable the mouse-wheel to scroll up. So when I scroll up with mouse-...
Symptomatic asked 18/9, 2014 at 9:45

0

The title pretty much describes my objective. Here is the code [works only on WebKit]: We have two divs, elem1 & elem2. There is also one textbox called logger to display result. elem1 has som...
Tincal asked 28/8, 2014 at 18:2

4

Solved

I like using Windows' Sticky Notes to keep a handy list of tasks that I'm working on, which can get a little lengthy at times. It works nicely, except for scrolling. Is there a way to use the...
Penitential asked 27/6, 2013 at 19:40

2

how to enable zooming in Microsoft chart control by using Mouse wheel I have the below code, i need to know how to make this event? in which class it is.. private void chData_MouseWheel(object se...
Maskanonge asked 28/5, 2013 at 8:13

3

Solved

This code disabled mouse scroll functionality, when i click on the document. $(document).on("click", function () { window.onmousewheel = function (e) { e.preventDefault(); } }); but, this wor...
Olgaolguin asked 4/7, 2012 at 12:23

4

Solved

I have a flash element on my page that you interact with by using the middle mouse scroll wheel. The page is long. So when scrolling with the mouse wheel it interacts with the Flash element AND scr...
Quadrille asked 31/3, 2010 at 15:2

2

I'm working on a canvas app embedded in a page. I have it so you can zoom into the drawing with the mousewheel but unfortunately this scrolls the page as it is part of an article. Is it possible t...
Chive asked 5/12, 2008 at 9:13

© 2022 - 2024 — McMap. All rights reserved.