Sencha touch Sencha Touch PullRefresh事件

Sencha touch Sencha Touch PullRefresh事件,sencha-touch,Sencha Touch,使用Sencha Touch 2.3.1a的最新版本,在我拉下刷新并将其恢复后,我可以使用什么事件来触发。我都试过了,什么也没试过: { xtype: 'list', itemId: 'passDownList', store: 'PassDownEntrysStore', plugins: [ { xclass: 'Ext.plugin.ListPaging', autoPaging: true }, { xclass:

使用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等

更新:6/20/2014


我让它工作的方法是重写最新的方法。我知道这不是最优雅的,但它很管用,但我希望有一个真正的活动。

你想完成什么?你不能直接使用refreshFn吗?不幸的是,2.3.1a版不再有该事件。我最终做的是重写fetch最新的函数和工作。我只是在刷新完成后更改按钮上的徽章文本。