Skip to main content
.NET 6.0+

FilterController.SetFilterActionRefreshed Event

Occurs after the Application Model’s Filters node settings (the list of filters and the selected filter item) are applied to the FilterController.SetFilterAction and before the current filter is applied to the List View’s collection source.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public event EventHandler<EventArgs> SetFilterActionRefreshed

Event Data

The SetFilterActionRefreshed event's data class is EventArgs.

Remarks

Handle the SetFilterActionRefreshed event to modify the list of filters and/or change the active filter. The list of filters is accessible using the ChoiceActionBase.Items collection of the SetFilter Action. If you need to add a custom filter to the collection, create a ChoiceActionItem instance and pass the criteria to the ChoiceActionItem.Data property. To select the active filter, use the SingleChoiceAction.SelectedItem property of the SetFilter Action.

See Also