Is it posible to change grid\'s store in ExtJS 4?
For example, i have two models:
User = Ext.define(\'User\',{ extend: \'Ext.data.Model\', [...], h
If you want to attach a store to a grid after the grid has been created, you can use the bindStore() method.
var store = user.products(); grid.getView().bindStore(store);
Alternatively you can also use load(), loadData(), loadRecords() methods, and copy the data into your store.