Posts by mprandot • 26 points
1 post
-
0
votes1
answer26
viewsA: How to catch the table scroll event?
$('#tab-grid').on('scroll', function() { $('.k-pager-refresh').trigger('click'); }); The problem with this approach is that it will always trigger the click when you scroll (change the page…