『转』如何判断Store加载完毕

store.load({ 
      callback : function(r, options, success) { 
          if (success == false) { 
               Ext.Msg.alert("ERROR",   "There was an error parsing the Country Combo.");
          }
          else{
            alert(store.getTotalCount());
          } 
      } 
  });

原文地址:https://www.cnblogs.com/minideas/p/1927740.html