eugenC76

Forum Replies Created

Viewing 1 replies (of 1 total)
  • Author
    Replies
  • in reply to: Scrolling and Pagination For Last Page #92801
    eugenC76
    Participant

    Hi Tony,

    I had the same problem. I think solution is pretty simple, if I change:

    Ln279: //page = parseInt((tbot + scrollTop) / div) + 1; // Original code

    to

    Ln279: page = parseInt((tbot + scrollTop + div – 1) / div) + 1; //changed code

    in grid.base.js, everything works fine.

    Also I found a problem: when grid uses 'altrows:true' scrolling doesn't work. I did a workaround by adding

    scrollTop -= (rows.outerHeight() – rows.innerHeight()) * rn;

    after ln271.

Viewing 1 replies (of 1 total)

Stay connected with us in your favorite flavor!