日期:2014-05-16 浏览次数:20392 次
pageBar = Ext.create('Ext.PagingToolbar', {
store: codeTabStore,
displayInfo: true,
displayMsg: '当前显示第 {0} - {1} 条,总共 {2}条',
emptyMsg: "没有数据"
}) ;
if(gridPanel){
gridPanel.reconfigure(codeTabStore, config.columns);
//修改pagebar中的store值
//????
}else{
gridPanel = Ext.create('Ext.grid.Panel', {
title: '代码表管理',
x: 5,
y: 10,
store: codeTabStore,
columns: config.columns,
sortableColumns: false,
enableColumnMove: false,
autoScroll:true,
bbar: pageBar
})
}