在 js-GRID 中编辑之前如何获取行值
How can I get the row value before editing in js-GRID
在 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;
},
有什么帮助吗?
我添加了代码:
onItemUpdating: function(args) { previousValue = args.previousValue;
}
除此之外,我将 previousValue
传递给了我的 editTemplate
,然后就完成了。
在 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;
},
有什么帮助吗?
我添加了代码:
onItemUpdating: function(args) { previousValue = args.previousValue;
}
除此之外,我将 previousValue
传递给了我的 editTemplate
,然后就完成了。