我正在使用 devextreme dxdatagrid 表。在这种情况下,如果我单击 OnEditorPreparing事件中的一行以检索该行上的数据。
function editorPreparing(e) {
console.log(e.row);
}
当我单击该行并使用 e.row 时,我可以轻松获取该行中的值。
但是使用时
console.log(e.row.data);
有什么方法可以检索行值。
我不确定你为什么使用onEditorPreparing事件来获取行数据,我会使用onRowClick代替,你可以在下面的示例中看到它:
onRowClick: function (e) {
console.log(e.data);
}