我需要在控制器中获取(检索)更新的单元格值。(MVC)
所以我尝试了这个,
var modified = this.getItemGrid().getStore().getUpdatedRecords();
console.log(modified); // return [] empty array
var modified = this.getItemList_Store().getUpdatedRecords();
console.log(modified); // return [] empty array
但即使我更新了一些单元格值,它也总是返回空数组。
有人知道我做错了什么吗?
这是我的部分视图代码,
Ext.define("App.view.orders.ItemList_view", {
extend: "Ext.grid.Panel",
alias: "widget.itemList_view",
plugins: [
Ext.create('Ext.grid.plugin.CellEditing', {
clicksToEdit: 1
})
],
initComponent: function () {
this.store = "ItemList_store";
this.columns = [
{
xtype: 'checkcolumn', text: "Ship", width: 50, dataIndex: "DR"
},
{ header: "test", width: 100, dataIndex: "test",
editor: {
xtype : 'textfield'
}
}
];
this.selModel = Ext.create("Ext.selection.CheckboxModel");
//this.selModel = Ext.create("Ext.selection.CellModel"); // It does not works either.
this.callParent(arguments);
},
.
.
.
谢谢!
[编辑]
非常感谢您的回答!我还有一些关于编辑器网格的问题。
它与 Ext3 有很大不同。所以我现在很困惑:(
Q1。如何收集已编辑的记录数据(单击按钮)?
更改网格单元格后触发的事件。但是我想在单击“更新已编辑单元格”按钮后收集已编辑的网格记录,并且我想一次全部更新。
在 Ext3 中,我确实是这样的,
(button) click : function(){
var modified = mygridStore.getModifiedRecords();
var recordsToSend = [];
Ext.each(modified, function(record){
recordsToSend.push(record.data);
});
var grid = Ext.getCmp('grid');
grid.el.mask('Updating','x-mask-loading');
grid.stopEditing();
recordsToSend = Ext.encode(recordsToSend);
Ext.Ajax.request({
url : '/test/test',
params : {
data : recordsToSend
},
success : function(response){
grid.el.unmask();
alert(response.responseText);
mygridStore.commitChanges();
},
failure : function(response){
mygridStore.rejectChanges();
}
});
}
如何更改 Extjs4 的代码?
Q2。我仍然不知道如何找出更改的校验列。
我试过了,但我不适用于 checkcolumn(因为我在更改复选框后进行了测试)
// grid coumn
{
xtype: 'checkcolumn', header: "My Check Column", width: 50, dataIndex: "CH"
}
-
// in control
'myGrid': {
validateedit: function (plugin, edit) {
console.log(edit);
},
checkchange: function (plugin, edit) {
console.log(edit);
console.log(edit.value);
}
}
Q3。当我单击要编辑的单元格时,会在 -_-; 中显示一些 HTML 标记;
我非常感谢您的帮助。非常感谢您宝贵的时间!