Fixed columns and scrolling on IE issuse

Fixed columns and scrolling on IE issuse

huynvhuynv Posts: 1Questions: 1Answers: 0

Hi every body,
in this sample: https://datatables.net/extensions/fixedcolumns/examples/initialisation/left_right_columns.html
if we run it on IE and we move horizontal scroll bar to right side --> move mouse to fixed column area (first column) and scroll (mouse wheel), only fixed column is scrolled, other column not scroll.

Please help me to fix this issuse.

Thank you!

Answers

  • rajusaforumrajusaforum Posts: 4Questions: 0Answers: 0

    Did you find any solution to the problem? I am experiencing the same issue with IE 11. Chrome seems to be working well.

  • rajusaforumrajusaforum Posts: 4Questions: 0Answers: 0

    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;
    });
    }

This discussion has been closed.