我遇到了关于Load More...按钮在sencha touch2
. 在这里,加载更多按钮是使用ListPaging插件添加的,并且来自Ext.plugins.Listpaging
它声明的文档:
在列表底部添加一个加载更多按钮。当用户按下此按钮时,下一页数据将被加载到存储中并附加到列表中。
但是,在这里,带有加载更多按钮的列表项出现在列表的顶部,而不是底部。在这里查看我的代码:
Ext.define('MyApp.view.MyLIst', {
extend : 'Ext.dataview.List',
xtype : 'mylist',
id : 'myList' ,
requires : [Ext.data.Store','Ext.plugin.ListPaging'],
config : {
width : '100%',
height : '100%',
loadingText : 'Loading data...',
emptyText : 'No Members',
itemTpl : '<div class="mylisttitle">{title}</div>',
store : 'mylistStore',
plugins : [
{
xclass : 'Ext.plugin.ListPaging',
autoPaging : false,
loadNextPage: function() {
console.log('Load more button clicked');
// fire event here
}
}],
masked : false,
mode : 'SINGLE',
scrollable : {
direction : 'vertical',
directionLock : true
}
}
});
并查看以下结果:
知道如何在列表底部显示相同的按钮吗?
谢谢
编辑:我已经在 senchatouch 论坛上发布了这个问题,仍在等待解决方案,你可以在这里看到