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

IModelListViewWeb.DetailRowView Property

Specifies the Detail View to be displayed in the Detail Row for the current List View’s ASPxGridListEditor.

Namespace: DevExpress.ExpressApp.Web.SystemModule

Assembly: DevExpress.ExpressApp.Web.v18.2.dll

Declaration

[DataSourceProperty("Application.Views")]
[DataSourceCriteria("(AsObjectView Is Not Null) And (AsObjectView.ModelClass Is Not Null) And ('@This.ModelClass' Is Not Null) And (IsAssignableFromViewModelClass('@This.ModelClass.TypeInfo', AsObjectView))")]
[ModelBrowsable(typeof(ModelListViewGridListEditorVisibilityCalculator))]
IModelDetailView DetailRowView { get; set; }

Property Value

Type Description
IModelDetailView

An IModelDetailView object specifying the Detail View to be displayed in the detail row.

Remarks

This property has effect when the IModelListView.EditorType property of the current ListView node is set to ASPxGridListEditor and IModelListViewWeb.DetailRowMode is set to DetailView or to DetailViewWithActions.

By default, the DetailRowView value is the same as the IModelListView.DetailView value. However, you may want to use an alternate Detail View layout in the detail row. In this instance, create a new DetailView node, adjust its layout as required and set it to the DetailRowView property.

See Also