Sunday, June 19, 2016

ExtJS: Store value sorting and update in Grid

Hi

var store =  Ext.data.StoreManager.lookup('Your Store ID Name');

store.filterBy(function(record, id) {
        if (record.get("age") != 48) {
          return true;
        }
        return false;
      }, this);

No comments:

Post a Comment