Skip to main content

GridSettingsBase.SubstituteFilter Property

Allows you to replace a filter applied with another filter.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public EventHandler<SubstituteFilterEventArgs> SubstituteFilter { get; set; }

Property Value

Type Description
EventHandler<SubstituteFilterEventArgs>

An EventHandler<TEventArgs><SubstituteFilterEventArgs,> delegate method allowing you to implement custom processing.

Remarks

The SubstituteFilter property enables you to replace a filter applied with another filter. The currently applied filter is specified by the SubstituteFilterEventArgs.Filter property. To replace this filter, assign a new filter criterion to this property.

See Also