Back to Devexpress

ModelListViewFiltersGenerator Class

expressappframework-devexpress-dot-expressapp-dot-systemmodule-18c2dae7.md

latest3.5 KB
Original Source

ModelListViewFiltersGenerator Class

A Nodes Generator that generates the content of the IModelListViewFilters node.

Namespace : DevExpress.ExpressApp.SystemModule

Assembly : DevExpress.ExpressApp.v25.2.dll

NuGet Package : DevExpress.ExpressApp

Declaration

csharp
public class ModelListViewFiltersGenerator :
    ModelNodesGeneratorBase
vb
Public Class ModelListViewFiltersGenerator
    Inherits ModelNodesGeneratorBase

Remarks

This class is a ModelNodesGeneratorBase descendant, that generates child nodes of the View | ListView | Filters node. Collects filters specified for the current List View’s business class via the ListViewFilterAttribute attributes. Creates the IModelListViewFilterItem for each filter.

To customize the content of the AppearanceRules node, implement a Generator Updater for this Nodes Generator by inheriting the ModelNodesGeneratorUpdater<T> class in the following manner:

csharp
public class Updater : ModelNodesGeneratorUpdater<ModelListViewFiltersGenerator> {
    public override void UpdateNode(ModelNode node) {
        // Cast the 'node' parameter to IModelListViewFilters
        // to access the Filters node.
    }
}

The Generator Updater above should be registered within the overridden ModuleBase.AddGeneratorUpdaters method. The complete example of implementing a Generator Updater for this Nodes Generator is provided in the Filters Application Model Node topic.

For a complete list of available Nodes Generators, refer to the Built-in Nodes Generators topic.

Inheritance

Object ModelNodesGeneratorBase ModelListViewFiltersGenerator

See Also

ModelListViewFiltersGenerator Members

Read and Set Values for Built-in Application Model Nodes in Code

Data Filtering

DevExpress.ExpressApp.SystemModule Namespace