在devextreme网格中使用javascript获取行数据

时间:2018-01-24 09:58:36

标签: javascript devextreme dx-data-grid

我正在使用devextreme dxdatagrid表。在这种情况下,如果我点击 OnEditorPreparing 事件中的一行来检索该行上的数据。

     function editorPreparing(e) {
         console.log(e.row);
        }

当我点击该行并使用e.row时,我可以很容易地得到该行中的值。 enter image description here

但是在使用时

       console.log(e.row.data);

我收到错误enter image description here

有没有办法检索行值。

1 个答案:

答案 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);
        }