Steve Staple
Steve Staple

Reputation: 3289

With a DevExpress datagrid, what event is triggered by clicking Edit?

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

Answers (1)

Andreas
Andreas

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

Related Questions