9

设想

我想用静态数据更新网格中特定记录的列数据。这是我的商店

extend : 'Ext.data.Store',
model  : 'MyModel',
autoLoad:true,
proxy: {
    type: 'ajax',
    url: 'app/data/data.json',
    reader: {
        type: 'json',
        root: 'users'
    }
},

我的数据.json

 {
     'users': [{
         QMgrStatus: "active",
         QMgrName: 'R01QN00_LQYV',
         ChannelStatus: 'active',
         ChannelName: 'LQYV.L.CLNT',
         MxConn: 50
     }]
 }

我正在做什么来更新记录:

var grid = Ext.getCmp('MyGrid');
var store = Ext.getStore('Mystore');
store.each(function(record, idx) {
    val = record.get('ChannelName');
    if (val == "LQYV.L.CLNT") {
        record.set('ChannelStatus', 'inactive');

        record.commit();
    }
});
console.log(store);
grid.getView().refresh();

我的问题

我在这里更新了记录。它没有反映在我的网格面板中。网格正在使用相同的旧存储(静态)。是静态数据的问题吗?还是我错过了什么或去错了地方?请帮我解决这个问题。非常感谢。

我的编辑

我正在尝试根据状态对列进行颜色编码。但即使我正在更新商店,我也总是得到状态 =“活动” 。

我想在我的网格中做什么

{
    xtype: 'grid',
    itemId: 'InterfaceQueueGrid',
    id: 'MyGrid',
    store: 'Mytore',
    height: 216,
    width: 600,
    columns: [{
        text: 'QueueMgr Status',
        dataIndex: 'QMgrStatus',
        width: 80
    }, {
        text: 'Queue Manager \n Name',
        dataIndex: 'QMgrName',
        width: 138
    }, {
        text: 'Channel Status',
        dataIndex: 'ChannelStatus',
        width: 78,
        align: 'center',
        renderer: function(value, meta, record) {
            var val = record.get('ChannelStatus');
            console.log(val); // Here I am always getting status="active". 
            if (val == 'inactive') {
                return '<img src="redIcon.png"/>';
            } else if (val == 'active') {
                return '<img src="greenIcon.png"/>';
            }
        }
    }, {
        text: 'Channel Name',
        align: 'center',
        dataIndex: 'ChannelName',
        width: 80
    } {
        text: 'Max Connections',
        align: 'center',
        dataIndex: 'MxConn',
        width: 80
    }]
}
4

4 回答 4

10

一个激进的方法是重新配置你的网格。这可能最终不是您的最终解决方案,但也许您会知道出了什么问题。

称呼

grid.reconfigure(store) 

代替

grid.getView().refresh();

更改记录后。您还可以使用单个 store.commitChanges() 而不是在每条记录上使用 record.commit()。

于 2013-06-29T04:45:59.337 回答
9

也许这只是一个错字,你在你的条件下分配了 val 。试试这个(= 到 ==):

var grid = Ext.getCmp('MyGrid');
var store = Ext.getStore('Mystore');
store.each(function(record,idx){
      val = record.get('ChannelName');
      if(val == "LQYV.L.CLNT"){
         record.set('ChannelStatus','active');
      }
      else {
         record.set('ChannelStatus','inactive');
      }
      record.commit();
});
console.log(store);
grid.getView().refresh();
于 2013-06-28T14:38:14.250 回答
2

您是否尝试过提交您的商店并重新加载它?

试试这个方法。

yourstorename.commitChanges();
yourstorename.reload(); 
于 2013-06-28T13:52:20.753 回答
1

I resolved it using

grid.bindStore(myupdatedstore);

As stated by @Christoph

grid.reconfigure(store) 

works fine as well .

于 2013-06-29T05:04:12.003 回答