In ExtJS 4.1 beta 2 I managed to implement an infinite scroll grid with a remote store. I basically took an existing (fully operational) paging grid (with remote store, filtering and sorting) and then put in the appropriate configs for infinite scrolling:
// Use a PagingGridScroller (this is interchangeable with a PagingToolbar)
verticalScrollerType: 'paginggridscroller',
// do not reset the scrollbar when the view refreshs
invalidateScrollerOnRefresh: false,
// infinite scrolling does not support selection
disableSelection: true,
It doesn't say this anywhere in the docs(see Infinite Scrolling section), but you need to set your store to have buffered: true
config. And you can't load with store.load()
it needs to be done like this:
store.prefetch({
start: 0,
limit: 200,
callback: function() {
store.guaranteeRange(0, 99);
}
});
With all that, everything works great if I scroll slowly and thus allow the data to prefetch, don't use any filters and don't use any sorting.
However, if I scroll fast or try to make the infinite scroll grid reload with a filter active or while sorting it all breaks apart. Error is options is undefined
.
I've spent a couple of hours doing some tracing in the code and googling and aside from concluding that no one has implemented an infinite scroll grid with remote filters and remote scrolling, I have found the following:
The filtering is breaking down because of this method in Ext.data.Store
which is called by the infinite scroller when it needs more data from the server:
mask: function() {
this.masked = true;
this.fireEvent('beforeload');
},
For some reason, this method fires the beforeload
event without the Ext.data.Operation
parameter which is supposed to be part of it as specified here.
As a result, an error occurs in the onbeforeload
handler in Ext.ux.grid.FiltersFeature
because of course "options" is undefined:
/**
* @private
* Handler for store's beforeload event when configured for remote filtering
* @param {Object} store
* @param {Object} options
*/
onBeforeLoad : function (store, options) {
options.params = options.params || {};
this.cleanParams(options.params);
var params = this.buildQuery(this.getFilterData());
Ext.apply(options.params, params);
},
I can cut out the call to this mask
method from the PagingScroller code and then the scroll functionality is great. I can scroll as fast as I like and it loads the data properly. But then filters and sort does not get applied to the ajax requests.
I haven't dived as much into the sorting aspect but I think it something similar with this mask
method because sort is simply another element contained by the operation
object and it causes no operation object to be passed to the ajax request.
I'm thinking that if I could just figure out how to force the mask
method to fire beforeload
with the operation
parameter (like the docs say it is supposed to) everything will be fine. Problem is, I haven't been able to figure out how to do that. Any suggestions?
If someone would just tell me that I am wrong and people have in fact made this work, I would be inspired, but a snippet of any overrides you used to handle this problem or a link would be much appreciated.
I've also tried downgrading to 4.0.7 and 4.0.2a and I get the same results, so it isn't just a beta problem.
Update - 7 Feb 12:
This seems like it may actually be a Ext.ux.grid.FilterFeature
problem not an infinite scrolling problem. If I remove the FilterFeature config entirely infinite scrolling works great and does pass the sorting params to my backend when I sort by a column. I will start looking into the FilterFeature end of things.