如何用extjs网格中的另一条记录替换行?

时间:2012-08-16 12:19:13

标签: extjs

如果我的网格中有5行

a 30
b 35
c 47
d 50
f 70

如何用c 12,cb 14,cc 20代替c 47,就像这样

a 30
b 35
ca 12
cb 14
cc 20 
d 50
f 70

提前致谢.... :)

1 个答案:

答案 0 :(得分:0)

最合适的方法是更改​​商店。

var store = grid.getStore();

store.on('load', changeRowC ,this);

var changeRowC = function(){

    //loop on your data of store and insert records ca, cb, cc 

}