1.

How To Write Before And After Load Events In The Store?

Answer»

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();
});



Discussion

No Comment Found