如果我的网格中有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
提前致谢.... :)
答案 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
}