我有一些关于分页Ext Store的问题。
商店会在页面加载时提取一定数量的历史数据。
如果记录数大于10,那么我需要在自定义组件/视图上实现分页。该视图将使用Ext.view.View和XTemplate生成。
我想知道我是否可以在自定义组件上使用分页工具栏,如果我可以查询本地保存所有数据的商店。因此,不要将参数传递给服务器并提取新数据,而是查询数据存储本身并将结果显示给用户。
答案 0 :(得分:4)
可以使用Ext.ux.data.PagingMemoryProxy代理。它位于examples \ ux \ data \ PagingMemoryProxy.js
中以下示例向您展示如何在使用Ext.view.View和XTemplate生成的自定义视图创建中分页图像:
Ext.define('Image', {
extend: 'Ext.data.Model',
fields: [
{ name:'src', type:'string' },
{ name:'caption', type:'string' }
]
});
Ext.create('Ext.data.Store', {
id:'imagesStore',
model: 'Image',
proxy: {
type: 'pagingmemory'
},
data: [
{ src:'http://www.sencha.com/img/20110215-feat-drawing.png', caption:'Drawing & Charts' },
{ src:'http://www.sencha.com/img/20110215-feat-data.png', caption:'Advanced Data' },
{ src:'http://www.sencha.com/img/20110215-feat-html5.png', caption:'Overhauled Theme' },
{ src:'http://www.sencha.com/img/20110215-feat-perf.png', caption:'Performance Tuned' }
],
pageSize: 2
});
var imageTpl = new Ext.XTemplate(
'<tpl for=".">',
'<div style="margin-bottom: 10px;" class="thumb-wrap">',
'<img src="{src}" />',
'<br/><span>{caption}</span>',
'</div>',
'</tpl>'
);
var store = Ext.data.StoreManager.lookup('imagesStore');
Ext.create('Ext.panel.Panel', {
title: 'Pictures',
autoScroll: true,
height: 300,
items: {
xtype: 'dataview',
store: store,
tpl: imageTpl,
itemSelector: 'div.thumb-wrap',
emptyText: 'No images available'
},
dockedItems: [{
xtype: 'pagingtoolbar',
store: store,
dock: 'bottom',
displayInfo: true
}],
renderTo: Ext.getBody()
});
您可以在jsfiddle.net中看到它:http://jsfiddle.net/lontivero/QHDZU/
我希望这很有用。
祝你好运!