extjs pagingtoolbar 怎么使用
发布网友
发布时间:2023-01-11 03:11
我来回答
共2个回答
热心网友
时间:2023-10-27 03:40
var countPerPage = 5; // 定义每页显示数量
var store = Ext.create('Ext.data.Store', { //定义store(reader要包含在proxy里面,否则无法起作用)
baseParams:{catalogid:0},
pageSize:countPerPage,
fields: ["id","filecode","filename"],
proxy: {
type: 'ajax',
url: '././FileListServlet',
reader:{
type:'json',
root:'items',
totalProperty:'total'
}
}
});
var fileGridPanel = Ext.create('Ext.grid.Panel',{
.........
bbar:Ext.create('Ext.PagingToolbar',{ //在grid中使用
store:store,
displayInfo:true,
displayMsg:'显示{0}-{1}条,共{2}条',
emptyMsg:'无数据'
}) ,
});
热心网友
时间:2023-10-27 03:40
再写取总记录数SQL总记录数传给pagingToolbar totalCoun