Fixed columns : locking columns can alone scroll on IE
Fixed columns : locking columns can alone scroll on IE
wjb
Posts: 3Questions: 1Answers: 0
I see a lot of similar problems, but I can not find a solution.
I tested in ie11 ~ 8 will appear
I looked at other solutions to the same problem,use the night version,but still there will be such a situation.
The specific operation is to use the mouse to drag the scroll bar to the bottom or the top, and then use the mouse wheel sliding lock column, the other columns will not follow the rolling
This discussion has been closed.
Answers
Now I find that this happens when you drag the scroll bar with the mouse later
I check the code,It's as if IE didn't trigger the mouseup event change mouseDown,
cause left gird touchstart event mouse controller cannot change left
Did you find any solution to the problem? I am experiencing the same issue with IE 11. Chrome seems to be working well.
I used the below as workaround for IE users alone. It just doesn't allow the fixed columns to be scrolled.
if (/MSIE (\d+.\d+);/.test(navigator.userAgent) || navigator.userAgent.indexOf("Trident/") > -1) {
$(document).on('mousewheel', '.DTFC_LeftWrapper', function () {
return false;
});
}