is it possible to have scroll in extJS grid (4.1), whose data store is loaded manually?
myStore = Ext.create('Ext.data.Store', { fields:givenStoreFields, data: [[]], }); myGrid = Ext.create('Ext.grid.Panel', { store: myStore, columns: givenColumns, });
In my case, I take data from the server, the data is configured, and then manually uploaded to the repository.
myStore.loadData(fetchedAndTweaked);
Since fetchedAndTweaked contains many lines, rendering is very slow and slows down the entire browser. Therefore, I want to add the parameters myGryd and myStore to have an βinfiniteβ scroll (in the fetchedAndTweaked dataset).
However : all the examples that I find, dataStore has a proxy server, etc.
//Thanks
source share