展开全部
你先要定义一个Store,例如var store = new Ext.data.Store({
url:'返回json的url',
reader:new Ext.data.JsonReader(
{id:'id',totalProperty:'totalCount',root:'list'},
['id','name'])
});
然后把store丢到你的Ext.PagingToolbar中,例如
new Ext.PagingToolbar({
pageSize:4,
store:store
}),
store中的totalProperty,就是你的总页数,这个会根据生成的json,例如
{success:true,totalCount : 10, list:[{"id":1,"name":"冲卡"},{"id":2,"name":"换卡"},{"id":4,"name":"明哥"}]}
中的totalCount 来得到。
url:'返回json的url',
reader:new Ext.data.JsonReader(
{id:'id',totalProperty:'totalCount',root:'list'},
['id','name'])
});
然后把store丢到你的Ext.PagingToolbar中,例如
new Ext.PagingToolbar({
pageSize:4,
store:store
}),
store中的totalProperty,就是你的总页数,这个会根据生成的json,例如
{success:true,totalCount : 10, list:[{"id":1,"name":"冲卡"},{"id":2,"name":"换卡"},{"id":4,"name":"明哥"}]}
中的totalCount 来得到。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询