使用最新版本的Sencha Touch 2.3.1a,在我下拉刷新后它可以用来触发什么事件并且它会重新启动。我已经尝试了所有这些并且没有:
{
xtype: 'list',
itemId: 'passDownList',
store: 'PassDownEntrysStore',
plugins:
[
{
xclass: 'Ext.plugin.ListPaging',
autoPaging: true
},
{
xclass: 'Ext.plugin.PullRefresh',
pullText: 'Pull down to refresh',
listeners:
{
}
}
],
我让他们离开了听众,因为他们没有做任何事情。但是我已经尝试了PullRefresh事件列表中的事件,如topchange,bottomchanged等。
更新:2014年6月20日
我让它工作的方式是覆盖fetchLatest()方法。我知道它不是最优雅的,但它的作品希望它有一个真实的事件。