Hi, I'm not sure how to phrase this question well, so please bear with me.
I've been using a remote setup for my data along with paging and it works well, but I'd like to get users away from paging and using virtual/infinite scrolling instead. I have the examples in place and it works, but what I'm finding is that when users move the scrollbar up and down really fast, it kicks off multiple remote requests. I see in Chrome's console when those requests are cancelled, but they still hit our server and tie up resources.
I started looking to see if I could use the beforeSend event to throttle requests so that we're not making more than xx requests in a given time period.
Is that something you can help me figure out - so that when users are rapidly scrolling up or down, we're making 1 request at a time to the server?
Thank you