I’m transitioning the grid to an angular 2 app. I’m using virtual scrolling, server-side sorting and filtering. Most of it is working great, but I’ve run into an issue.
1. Grid loads the first 50 of 10000 records.
2. Scroll to the bottom. Loads 9950-10000.
filterscount=0&groupscount=0&pagenum=2195&pagesize=10&recordstartindex=35116&recordendindex=35133
3. I run a server side filter, but I can’t get the recordstartindex to 1.
I tried checking the count on the server side against the recordstartindex. I can get records back. If I don’t have a scroll bar it displays, but if there is a scroll bar nothing displays until a scroll to refresh it, then it’s ok.
Is there any Angular2 call to get the recordstartindex to 1?
Thanks.