Has anyone had an issue with the datasource calling the same paging over and over? I am trying to come up with a simplified version to test this theory. But here is my code for creating the dataset:
When I run this, it just hits the service over and over for pages 1 to 100. Any ideas?
ds = new kendo.data.DataSource( { transport: { read: { url: params.readPath } }, serverPaging: true, serverSorting: true, pageSize: 100, schema: { id: "c0", data: "results", total: "count", parse: function(data) { params.fields = data.fields; params.onSuccess(params); return data; } } }); ds.read();When I run this, it just hits the service over and over for pages 1 to 100. Any ideas?