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

DetailView.ViewEditMode Property

Specifies a mode of displaying a Detail View in ASP.NET and Mobile applications.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public ViewEditMode ViewEditMode { get; set; }

Property Value

Type Description
ViewEditMode

A ViewEditMode enumeration value that represents the current Detail View’s display mode.

Available values:

Name Description
View

An XAF element that supports the View-Edit mode is displayed in the read-only mode in ASP.NET and Mobile applications.

Edit

An XAF element that supports the View-Edit mode is displayed in the editable mode in ASP.NET and Mobile applications.

Remarks

Use this property to specify the mode for displaying the current Detail View in ASP.NET and Mobile applications. The following values are available:

  • Edit

    The Detail View is available for editing.

  • View

    The Detail View can be viewed only.

By default, a Detail View is displayed in the View mode when being invoked from a List View. To switch to the Edit mode, use the SwitchToEditMode Action. To save changes and switch the Detail View back to the View mode, use the SaveAndClose Action.

You can change this default behavior as described in the How to: Display a Detail View Directly in Edit Mode in ASP.NET and Mobile Applications topic.

The example below demonstrates how to make all Detail Views in an application read-only.

using DevExpress.ExpressApp;
using DevExpress.ExpressApp.Editors;
// ...
public class MakeDetailViewsReadOnlyController : ViewController<DetailView> {
    protected override void OnActivated() {
        base.OnActivated();
        View.ViewEditMode = ViewEditMode.View;
    }
}

The following code snippets (auto-collected from DevExpress Examples) contain references to the ViewEditMode property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also