我在 4.4.5 中有以下代码
parametrii={addParams: {
rowID: 'new_row',
useDefValues: true,
addRowParams: {
keys: true,
oneditfunc: function (rowid) {
editingRowId = rowid;
},
afterrestorefunc: function (id) {
editingRowId = undefined;
},
aftersavefunc : function(rowid,response) {
var json = $.parseJSON(response.responseText);
return [true, eval(json.mesaj),$gridintretinuti.trigger("reloadGrid")];
}
}
}
并且在 4.5.0 中不起作用。
我不知道为什么,有人可以帮助我吗?
这是错误:TypeError: can't convert undefined to object