EXT3 JS Grid - 在渲染和排序之前更改特定的JsonStore值

时间:2012-05-15 14:38:27

标签: extjs extjs3

我想将int附加到网格中的特定单元格 - 这需要在渲染和排序之前进行,以便用户看到正确的顺序

这是一张排行榜。

我已经通过conver-renderer - record.push等几次迭代而受益匪浅 线索似乎是复制商店并在值更改时在网格中使用新商店

对此有任何帮助表示赞赏。

伊恩

1 个答案:

答案 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*/);
});