Hey,
I've set up a listview to be endless scrolling with a local data source (not remote). The functionality works correctly but I'm not getting a spinner showing when the next batch of data is being displayed. Should this work out of the box or have a missed a parameter needed in the set up?
$("#events-listview").kendoMobileListView({
dataSource: kendo.data.DataSource.create({data: viewModel.events, pageSize: 30}),
template: $("#events-list-template").html(),
endlessScroll: true,
scrollThreshold: 30
});
Thanks in advance