Skip to main content
A newer version of this page is available. .
All docs
V22.1
.NET 6.0+
  • The page you are viewing does not exist in the .NET Framework 4.5.2+ platform documentation. This link will take you to the parent topic of the current section.
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

DxGridListEditor Class

List Editor that can be used in XAF ASP.NET Core Blazor UI applications to display List Views in a UI.

Namespace: DevExpress.ExpressApp.Blazor.Editors

Assembly: DevExpress.ExpressApp.Blazor.v22.1.dll

NuGet Package: DevExpress.ExpressApp.Blazor

Declaration

public class DxGridListEditor :
    ColumnsListEditor,
    IComplexListEditor,
    IDxGridLayoutChangedHolder,
    ISupportUpdate,
    ISupportAppearanceCustomization

Remarks

List Views use List Editors to display object collections in a UI. The DxGridListEditor displays data in a table:

DxGridListEditor OverView

To display object collections, the DxGridListEditor uses an instance of the DxGrid class.

Features include:

  • Client and Server Mode for XPO and EF Core.
  • Protected Content Placeholders for Secured Data Rows.
  • Property Editors as Cell Templates.
  • Grouping, Sorting, Filtering.
  • Group and Total Summaries.
  • Save layout settings in the Application Model.
  • Selection API.
  • Context-dependent Menu Toolbar.
  • Conditional appearance for cells.
  • Column Resizing.
  • Column Chooser.

The DxGridListEditor does not support the following features:

Enable the DxGridListEditor

The DxGridListEditor is enabled by default in projects created with v22.1+.

DxGridListEditor in a Project Upgraded from Older Versions

If you updated your project from v21.2 or earlier, do the following:

  1. Open Model.xafml file from the Blazor module project. In the Model Editor, go to ApplicationName | Views. Set the DefaultListEditor property to DevExpress.ExpressApp.Blazor.Editors.DxGridListEditor.

    enable dxgridlisteditor in model editor

  2. If you enabled DxGridListEditor in v21.2, remove the code used in v21.2 to enable DxGridListEditor in your application.
  3. If you edited the DxGridListEditor model properties, update your code according to the following tutorial lesson: Access the Grid Component in a List View (.NET 6).

Inheritance

See Also