0

Extjs 4.2

Ext.create('Ext.grid.Panel', {
    store:Ext.create('Ext.data.Store', {
        fields:['id', 'subject', 'content'],
        idProperty:'id',
        autoSync:true,
        proxy:{
            api:{update:'update'}
        }
    }),
    columns:[
        {text:'subject', dataIndex:'subject'},
        {text:'content', dataIndex:'content'}
    ]
});

当“主题”列更改时,存储代理将发送带有“内容”的数据,但我只需要“主题”。

4

1 回答 1

0

也许store.sync()可以解决问题。在 Extjs 3.4 中有一个函数store.save我在 4.2 版本中找不到等效的方法

于 2013-09-04T18:51:13.453 回答