Wednesday, April 20, 2016

KendoGrid - Detect a scroll event inside grid

If you need to detect a scroll event inside a Kendo Grid, the following can be used. (grid must have scrollable: true - which is the default)
$('#MyGrid .k-grid-content').scroll(function () {
alert('scrolled');
});

No comments:

Post a Comment