I need the ability to load say 100 rows in the grid. when the user scrolls to the bottom, load another 100 rows and append that to the end.
I do not know how many rows there are in the dataset before hand. As this could change as its effectively scroll through a live dataset with new entries being added continuously.
I get the next lot of data based on a property of the last item in the list.
Is there a way to achieve this? Ive looked at
https://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/virtualscrolling.htm?arctic
but that doesnt do what I want, that lets you scroll to any place and it then asks for start + endindex. since i need to have an idenifier from the last item, giving a start/end index doesnt help.