Hi Guys,
I'm facing an issue regarding a Store set in a controller to populate an empty list.
I'm setting the list listeners on the refresh event, but this is called in loop and can't see why...
Can someone help me to find why the console.log('Loop Alert 2') below is called multiple times ?
Thanks a lot !
Code:
populateList : function(idSection){
Ext.getStore('store_SectionList').removeAll();
Ext.getStore('store_SectionList').setProxy({
type: 'ajax',
url: occCustoms.getwebServiceURI()+'?id='+idSection,
reader:{
type:'json',
rootProperty:'Sections'
}
});
Ext.getStore('store_SectionList').clearListeners();
console.log('Loop Alert 1');
Ext.getStore('store_SectionList').setListeners({
refresh: function(store){
console.log('Loop Alert 2');
}
});
Ext.getStore('store_SectionList').load();
},