Is it possible to use Kendo's Grid to do virtual/infinite scrolling with an unknown number of entities? My data is stored in a NoSQL Datastore which I query using cursors, so in general it is possible to determine where or not the data has tapped out on a particular page fetch, but not the total number of items. Unfortunately, the schema.total documentation included below seems to indicate that schema.total is required for server side paging.
schema.total Function |String
The field from the server response which contains the total number of data items. Can be set to a function which is called to return the total number of data items for the response.
The schema.total setting may be omitted when the Grid is bound to a plain Array (i.e. the data items' collection is not a value of a field in the server response). In this case, the length of the response Array will be used.
schema.total must be set if the serverPaging option is set to true.
So, is there any way to do virtual/infinite scrolling with an unknown total?
Thanks