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(); });
grid.getStore().on ({ beforeload : function(store) { // perform some operation }, load : { fn : function(store) { //perform some operation }, scope : this } store.load(); });
Comments
Post a Comment