Author Topic: How to catch the horizontal scroll bar event?  (Read 3165 times)

ksoerens

  • Newbie
  • *
  • Posts: 4
    • View Profile
How to catch the horizontal scroll bar event?
« on: November 17, 2014, 08:35:43 pm »
Above my grid I have some dropdown lists - one for each column in the grid. If a horizontal scroll bar appears in the grid, I need to scroll the dropdowns as well.

I've tried something like this:

    $("div.pq-sb-horiz").on("pqscrollbarscroll", function (event, ui) {
      alert('scroll');
    });

and

    $('#grid_json').on("pqscrollbarscroll", function (event, ui) {
      alert('scroll');
    });

outside and inside the $(document).ready event.

But my functions never get triggered.

What am I doing wrong....?

Thanks in advance for your help  :)


twoer

  • Newbie
  • *
  • Posts: 7
    • View Profile
Re: How to catch the horizontal scroll bar event?
« Reply #1 on: February 25, 2015, 03:31:11 pm »
my pqscrollbarscroll function no don't work.