当Sencha Touch 2.2中的PullRefresh插件时,列表消失

时间:2013-06-08 14:58:49

标签: javascript list sencha-touch sencha-touch-2

我将pullRefresh插件添加到我的列表中,列表不再显示。控制台中没有错误或警告。我添加插件时应该做什么?

    {   xtype:'list',
    itemId:'boxes',
    scrollable:true,
    disableSelection:true,
    plugins: [
        {   xclass: 'Ext.plugin.PullRefresh',
            pullRefreshText: '...',
            refreshFn: function(plugin) {
                console.log('I am pulled');
            }
        }
    ],
    listeners:{
        itemtap:function(){
            ...;
        } 
    },
    height:'100%',
    grouped:true,
    store:{
        grouper: {
            groupFn: function(record) {
                ...
            }
        },
        fields:[...],
        data:[]
    },
    itemTpl:'...'
}

1 个答案:

答案 0 :(得分:1)

插入pullRefresh时,必须指定列表宽度才能正确显示。我添加了width:'100%',它运行正常。