Reputation: 3289
I can't find the answer to this in the documentation.
If I am using a DxDataGrid, and I click on a rows Edit button, what event is fired?
I have tried onRowValidating, onSelectionChanged, onEditing, onRowClick and onRowEditing (the one I thought most likely.)
It is none of these.
Upvotes: 0
Views: 1504
Reputation: 21911
From the official documentation (v17.1):
editingStart
Fires before a row (in row edit mode) or a cell (in batch edit mode) switches into the editing state.
editorPreparing
Fires before an editor is created.
editorPrepared
Fires after an editor is created.
Upvotes: 1