在一个提问网站看到的,用了一下成功解决问题,我是3.4做的其他版本未实验
bbar: new Ext.PagingToolbar({
pageSize: 25,
store: store,
displayInfo: true,
displayMsg: 'Displaying topics {0} - {1} of {2}',
emptyMsg: "No topics to display",
onFirstLayout : function(){//增加这个配置
if(this.dsLoaded){
this.onLoad.apply(this, this.dsLoaded);
}
if(this.rendered && this.refresh){
this.refresh.hide();
}
}
})