How to write before and after load events in the store?

grid.getStore().on ({
   beforeload : function(store) {
      // perform some operation
   },
   load : {
      fn : function(store) {
         //perform some operation
      },
      scope : this
   }
   store.load();
});

Comments

Popular posts from this blog

How to start and stop editing a record?