I added the pullRefresh plugin to my list and the list doesn't display anymore. No errors or warnings in the console. Is there sth I should do when I add a plugin?
{ 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:'...'
}