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!