0

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

这是为了一个排行榜。

我已经通过 conver-renderer-record.push 等的几次迭代 线索似乎是复制存储并在值已更改时在网格中使用一个新的

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

伊恩

4

1 回答 1

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*/);
});
于 2012-05-15T15:28:36.277 回答