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'}
]
});
当“主题”列发生变化时,商店代理会发送带有“内容”的数据,但我只需要“主题”。