Is it possible to do this process in ExtJS 4.1.x ?
var myMixedCollection = myStore.queryBy(...);
var anotherStore = Ext.create('Ext.data.Store', { data: myMixedCollection, ... });
var myGrid = Ext.create('Ext.grid.Panel', { store: anotherStore, ... });
Because my grid displays nothing or just one empty line.
When I log my myMixedCollection there is no problem all data are here but when I open my anotherStore with Firebug i can see there is only one empty line in my data store.
myMixedCollectionwill be a collection of records (model instances) and as long as the new store hast the same model set this will work! So the answer is YesWell, for sure you need to call getRange() on the
myMixedCollectioninstanceHere is a working example
and the JSFiddle