我将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:'...'
}
答案 0 :(得分:1)
插入pullRefresh时,必须指定列表宽度才能正确显示。我添加了width:'100%'
,它运行正常。