我正在尝试在可编辑网格中的EXT js中将记录从beforeedit
传递到edit
,因为我需要根据该字段的先前值进行验证。例如,我有行(电话号码),当我尝试编辑该字段时,我只能在电话启动6时才能这样做,但如果电话从9开始,我只能将其改为另一个以9开头的电话。 / p>
我在我的代码中使用了下一个,但我不知道在编辑之前如何将值传递给edit函数。这是我的代码:
listeners: {
beforeedit: {
scope: this,
fn: function(e, context2){
var record2= context2.record;
var recordData2=record2.getData();
alert(JSON.stringify(recordData2));
}
},
edit: function(e, context){
var record = context.record;
var recordData = record.getData();
recordData.Funcionalidad = 'Modificar';
alert(JSON.stringify(recordData));
Ext.Ajax.request({
url: 'http://localhost:8080/MyMaver/ServletTablaLotes',
method: 'POST',
// merge row data with other params
params: recordData
});
}
}
如何将以前的值引用到edit:function?
答案 0 :(得分:4)
试试这个:
beforeedit: function(editor, e, eOpts) {
var grid = Ext.getCmp('gridId'); // or e.grid
if (e.record.data.phoneNumber === 'your condition') {
//you code ..
e.cancel = false; //may edit the record
} else {
e.cancel = true; //not allowed to edit
}
},