在 js-GRID 中,我希望在编辑行(editTemplate)期间获取该行的初始值,然后再获取新行的初始值。特定的 js-GRID 列是一个文本字段。
这是我的代码,但到目前为止,但在我的警报中,我什么也没得到。
editTemplate: function() {
//Access the current text field
var variableGroupEditResult = jsGrid.fields.text.prototype.editTemplate.call(this);
//alert(variableGroupEditResult.val());
return variableGroupEditResult;
},
请问有什么帮助吗?