Hi Tom,
Greetings from Syncfusion support.
We suggest you to bind the scroll event to Grid’s content div element to achieve this requirement. Please refer and use the below codes in your application.
window.Onscroll = function () {
var grid = document.getElementsByClassName("e-gridcontent")[0].firstChild;
// grid.onscroll = function(){console.log("scrolled")};
grid.addEventListener("scroll",function(){console.log("scrolled")});
};
|
Please get back to us if you need further assistance.
Regards,
Renjith Singh Rajendran