gpt4 book ai didi

sencha-touch - 当用户滚动到列表末尾时如何更新 Sencha Touch List

转载 作者:行者123 更新时间:2023-12-04 18:13:20 25 4
gpt4 key购买 nike

我有一个应用程序,其中有大约 1000 条记录要显示在 localstore 的 sencha 列表中。如果我尝试一次填充所有数据,那么刷新列表需要很长时间(大约 1 分钟)。

现在我想加载包含初始 20 条记录的列表,然后它应该在用户向下滚动时加载下 20 条。当用户滚动到列表末尾时如何捕获事件?

最佳答案

摘自 Secncha Doc site

Ext.create('Ext.dataview.List', {
config: {
plugins: [
{
xclass: 'Ext.plugin.PullRefresh',
pullRefreshText: 'Pull to refresh...'
},
{
xclass: 'Ext.plugin.ListPaging',
autoPaging: true
}
],

itemTpl: '<div class="item">{title}</div>',
store: 'Items'
}
});

从我这里我添加而不是 xclass: '' 你也可以使用 xtype: 'listpaging'。它也有效...

干杯,奥列格

PS。如果仍然不清楚,请在此处粘贴您的代码片段...

关于sencha-touch - 当用户滚动到列表末尾时如何更新 Sencha Touch List,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12195478/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com