我正在使用devextreme dxdatagrid表。在这种情况下,如果我点击 OnEditorPreparing 事件中的一行来检索该行上的数据。
function editorPreparing(e) {
console.log(e.row);
}
当我点击该行并使用e.row时,我可以很容易地得到该行中的值。
但是在使用时
console.log(e.row.data);
有没有办法检索行值。
答案 0 :(得分:0)
I am not sure why you use onEditorPreparing event to get the row data, I would use onRowClick instead, you can see it in the example below:
onRowClick: function (e) {
console.log(e.data);
}