0

我将 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:'...'
}
4

1 回答 1

1

插入 pullRefresh 时,必须指定列表宽度才能正确显示。我添加了width:'100%',效果很好。

于 2013-06-09T10:07:20.867 回答