我试图获得一个非常大的列表来干净利落地滚动并希望实现 Clusterize.js 但 Sencha 似乎捕获了触摸滚动事件并且不会让它们传递下去。
Clusterize.js 网址:http://nexts.github.io/Clusterize.js/
我开始了一个显示普通列表及其性能的 fiddle ,我正在努力实现 Clusterize...:http://jsfiddle.net/AnthonyV/9hds0has/
注意:对于较弱的移动平板电脑,我需要它在 IE 上工作并表现良好。
我不想在 HTML 面板上启用滚动条,因为这会造成干扰。
我确实尝试启用滚动条,然后添加监听器以将事件向下推并禁用传播,但这不起作用。
{
direction:'vertical',
scroller: {
listeners:{
scrollstart:function(a,b,c){
// stop the scroller an pass on the event;
return false;
},
scroll:function(a,b,c){
// stop the scroller an pass on the event;
console.log('[scrollable][on scroll]');
return false;
},
scrollend:function( scroller, x, y, eOpts ){
// stop the scroller an pass on the event;
console.log('[scrollable][on scrollend]x='+x+', y='+y);
return false;
}
}
}
}
我还查看了relayEvent和relayEvents,但这些似乎是为了在ext小部件之间推送事件..
最佳答案
答案是不要!
Clusterize.js 是实现无限滚动的一种非常酷的方式,但该功能已经内置到 Sencha 列表小部件中。唯一的问题是它要工作或正常工作你需要升级到 Sencha Touch 2.4.2
有关如何进行的更多信息,请参阅以下 StackOverFlow 问题:
Sencha Touch - How to enable Infinite Scroll
关于javascript - Sencha Touch 和 Clusterize.js,向下传递触摸滚动事件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33963636/