I have a list of news in a Ext.List inside a panel
prj.views.NewsList = Ext.extend(Ext.Panel, { layout: \'card\', initComponent: function() {
I do this when changing the store and it works like a champ
var yourbutton = new Ext.Panel({ listeners: { afterrender: function(c){ c.el.on('click', function(){ YourList.update(); YourList.bindStore(newStore); }); } } });