I have implemented a IListDataAdapter (using VirtualizedDataSource) that populates objects from an asynchronous WinRT source. It almost works as expected. I set up a ListView with incremental load form my data source. It appears the itemsFromIndex() method gets called repeatedly by the WinJS libraries in some kind of infinite loop.
I simplified my data adapter so that it contains a reference to a populated list (to make sure my async calls were not creating a problem). As I scroll horizontally, the list view tries to populate itself, but many times, it just ends up going into some infinite loop internally.
As I scroll the list view, it starts loading item templates. It doesn't bind them. How do I know it is in a loop? Breakpoints and that console.log below. It just keep on going using up my processor like crazy. Does anyone know what's going on here?
Here is the code for my itemsFromIndex. Nothing special.
itemsFromIndex: function (requestIndex, countBefore, countAfter) {
var length = this._isupportincrementalloadcollection.size;
if (requestIndex >= length) {
return WinJS.Promise.wrapError(new WinJS.ErrorFromName(WinJS.UI.FetchError.doesNotExist));
}
var start = Math.max(requestIndex - countBefore, 0);
var end = Math.min(requestIndex + countAfter, length - 1);
var items = [];
for (var i = start; i <= end; i++) {
var item = this._itemFromIndex(i);
items.push(item);
}
console.log("returning");
return WinJS.Promise.wrap({
absoluteIndex: requestIndex,
atEnd: end === length - 1,
atStart: start === 0,
items: items,
offset: requestIndex - start,
totalCount: length
});
}
My ListView is set up with the following options:
loadingBehavior: 'incremental',
pagesToLoad: 4,
automaticallyLoadPages: true,
pagesToLoadThreshold: 1,