Skip to main content
A newer version of this page is available. .

DetailView.ViewEditModeChanged Event

Occurs after changing the current View’s DetailView.ViewEditMode property value.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public event EventHandler<EventArgs> ViewEditModeChanged

Event Data

The ViewEditModeChanged event's data class is EventArgs.

Remarks

By default, this event is raised when the Edit, SaveAndClose or Cancel built-in Action is executed. This behavior is provided by the WebModificationsController. So, it makes sence in ASP.NET Web applications only. In Windows Forms applications, Detail Views are always displayd in the Edit mode.

Handle this event to perform custom actions after the current View’s DetailView.ViewEditMode has changed. For instance, you can activate a custom Action for a View being in the Edit mode. The example is provided in the Add a Simple Action tutorial.

See Also