I need to refresh a panel that has autoLoad content.
var contentPanel = new Ext.Panel({
border: false,
plain : true,
autoLoad : {
url : 'content.html'
}
});
I tried,
click : function(){
contentPanel.getUpdater().refresh();
}
but it does not work.
anybody know how to refresh that panel content?
Thank you!
There are two ways to do that:
or
Working sample: http://jsfiddle.net/lolo/Hz6dg/3/