Hi folks, is there any event fired when the list finish rendering items ? .. I mean, after loading its associated store, and after populating them into the list.
thanks!
Printable View
Hi folks, is there any event fired when the list finish rendering items ? .. I mean, after loading its associated store, and after populating them into the list.
thanks!
For the moment, Im doing:
Code:listeners: {
show: function(list, opts) {
var store = this.getStore();
if (!store.isLoading()) {
//some code
} else {
store.onAfter('load',function() {
//some code
});
}
}
}