在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;
},
请帮忙吗?
答案 0 :(得分:0)
我添加了代码:
onItemUpdating: function(args) { previousValue = args.previousValue;
}
除此之外,我将previousValue
传递给我的editTemplate
并完成了。