我想将int附加到网格中的特定单元格 - 这需要在渲染和排序之前进行,以便用户看到正确的顺序
这是一张排行榜。
我已经通过conver-renderer - record.push等几次迭代而受益匪浅 线索似乎是复制商店并在值更改时在网格中使用新商店
对此有任何帮助表示赞赏。
伊恩
答案 0 :(得分:0)
可以做类似以下的事情:
var grid, gridStore, tempStore;
gridStore = new Ext.data.Store();
tempStore = new Ext.data.Store();
grid = new Ext.grid.GridPanel({
store: gridStore
});
tempStore.addListener("load", function (store, records) {
//make your modifications to the records (concat the int)
gridStore.loadData(/*some results*/);
});