当前位置: 代码迷 >> Web前端 >> 重写store中的query步骤
  详细解决方案

重写store中的query步骤

热度:303   发布时间:2012-11-09 10:18:48.0
重写store中的query方法

Grid中有时候会统计所有子节点的值进行汇总时,store中只有query()方法,但有时会有问题,出现统计子节点出现计算错误:

?var mixedCollection=s.queryExact("_parent",record.get("_id"));

?这个时候就要重写store中原的的方法query了:

??? store中原有方法query为:

    query : function(property, value, anyMatch, caseSensitive){
        var fn = this.createFilterFn(property, value, anyMatch, caseSensitive);
        return fn ? this.queryBy(fn) : this.data.clone();
    },
?

?

?

? 重写query方法,改名后(queryExact --自定义)为:

Ext.override(Ext.data.Store,{    
    queryExact : function(property, value, anyMatch, caseSensitive){
        var fn = this.createFilterFn(property, value, anyMatch, caseSensitive, true
);
        return fn ? this.queryBy(fn) : this.data.clone();
    }
});
  相关解决方案