Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there in ExtJs 3 JsonStore event for when store is loaded?

Tags:

extjs

I have to update my display when JsonStore has loaded all records, is there event for this event?

like image 746
newbie Avatar asked Dec 27 '25 16:12

newbie


1 Answers

The load event will work:

store.on('load', function(store, recs, opt){
     //update your display here
}, this);
like image 136
shane87 Avatar answered Dec 31 '25 17:12

shane87