在加载商店时,是否存在ExtJs 3 JsonStore事件?

new*_*bie 3 extjs

当JsonStore加载了所有记录时,我必须更新我的显示,是否有此事件的事件?

sha*_*e87 6

load事件将起作用:

store.on('load', function(store, recs, opt){
     //update your display here
}, this);
Run Code Online (Sandbox Code Playgroud)