jqGrid error: Uncaught TypeError: Cannot read property 'savetext' of undefined
jqGrid error: Uncaught TypeError: Cannot read property 'savetext' of undefined
我有 jqGrid JS 4.7.1 (2014-12-16)。我想自己存钱。这就是我调用编辑行的方式:
var editparameters = {
"keys" : true,
"oneditfunc" : function(a){console.log('oneditfunc');},
"successfunc" : function(a){console.log('successfunc');},
"url" : 'clientArray',
"extraparam" : {},
"aftersavefunc" : function(a){console.log('aftersavefunc');},
"errorfunc": function(a){console.log('errorfunc');},
"afterrestorefunc" : function(a){console.log('afterrestorefunc');},
"restoreAfterError" : true,
"mtype" : "POST" // I also tried null for this
};
grid.editRow(id, editparameters);
当我完成单元格编辑并在文本输入中按回车键时,我在 jqgrid 中收到此错误:
Uncaught TypeError: Cannot read property 'savetext' of undefined (jquery.jqGrid.js:9892)
我的目标:处理我自己对模型的保存以及在 jqgrid 中无错误地发布到服务器。
我想你忘了在 jquery.jqGrid.min.js
之前包含 grid.locale-en.js
文件。
您不是第一个遇到问题的人。正因为如此,我删除了 free jqGrid 4.8 (see readme and wiki)
中的要求
我有 jqGrid JS 4.7.1 (2014-12-16)。我想自己存钱。这就是我调用编辑行的方式:
var editparameters = {
"keys" : true,
"oneditfunc" : function(a){console.log('oneditfunc');},
"successfunc" : function(a){console.log('successfunc');},
"url" : 'clientArray',
"extraparam" : {},
"aftersavefunc" : function(a){console.log('aftersavefunc');},
"errorfunc": function(a){console.log('errorfunc');},
"afterrestorefunc" : function(a){console.log('afterrestorefunc');},
"restoreAfterError" : true,
"mtype" : "POST" // I also tried null for this
};
grid.editRow(id, editparameters);
当我完成单元格编辑并在文本输入中按回车键时,我在 jqgrid 中收到此错误:
Uncaught TypeError: Cannot read property 'savetext' of undefined (jquery.jqGrid.js:9892)
我的目标:处理我自己对模型的保存以及在 jqgrid 中无错误地发布到服务器。
我想你忘了在 jquery.jqGrid.min.js
之前包含 grid.locale-en.js
文件。
您不是第一个遇到问题的人。正因为如此,我删除了 free jqGrid 4.8 (see readme and wiki)
中的要求