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
I think a better solution would be to :
grid1.on('itemclick', function(view, record) { grid2.reconfigure(record.products()); );