Is there a JsonStore event in ExtJs 3 to load the store?

I need to refresh my screen when JsonStore has loaded all the records, is there an event for this event?

+3
source share
2 answers

The load event will work:

store.on('load', function(store, recs, opt){
     //update your display here
}, this);
+6
source

The "load" event is what you are looking for. See online documentation:

http://dev.sencha.com/deploy/ext-3.3.0/docs/?class=Ext.data.JsonStore

+2
source

All Articles