我有一个sencha touch Ext.Dataview组件,它从商店中提取数据。如何在dataview的滚动端加载更多记录。
我正在使用cordova创建一个HTML5应用程序。
答案 0 :(得分:0)
这里是根据您的需要加载更多记录的代码。它仅适用于 LIST ,只记得。
Secnha加载更多插件Ext.plugin.ListPagingView
注意:在' 商店'你需要申请config>> pageSize
pageSize:30,//任何达姆数
{
xtype: 'panel',
flex: 1,
layout: 'fit',
items: [
{
xtype:'list',
itemId:'asd',
disableSelection:true,
id:'asd',
itemTpl:new Ext.XTemplate(
'<div class="maindiv">'+
'</div>'
),
store:'xyz',
plugins: [
{
xclass: 'Ext.plugin.ListPaging',
noMoreRecordsText:'No More Products',
loadMoreText:'Load More',
autoPaging: true
}
],
itemHeight:60
}
]
}