Hybrid View
-
3 Dec 2012 4:25 PM #1
Ext.List populate? event
Ext.List populate? event
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!
-
3 Dec 2012 4:51 PM #2
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 }); } } }


Reply With Quote