FixedColumns Mousewheel scrolling issue

FixedColumns Mousewheel scrolling issue

jkhairnarjkhairnar Posts: 1Questions: 1Answers: 0

Hello, I am using FixedColumns 3.2.2 extension and have a weird issue with Mouse wheel scrolling. When the page loads and if there are no mouse events, if you try to scroll through the grid using the mouse wheel, the fixed columns and other columns move in synch. But as soon as we touch the grid, or if we use the horizontal or vertical scroll bars and try to use the mouse wheel scroll while on the fixed column, the fixed column only scrolls leaving the other non fixed columns out of sync. Any help is greatly appreciated.

Answers

  • IlcasistaIlcasista Posts: 1Questions: 0Answers: 0

    hi jkhairnar,
    i found somewhere around the following way to disable the mouse wheel when your mouse is over fixed columns (Bgrid is my html table id):
    $('#Bgrid_wrapper').find('.DTFC_LeftWrapper').bind("mousewheel", function () {
    return false;
    });;
    Hope it helps

This discussion has been closed.