Skip to main content
.NET Framework 4.6.2+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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