Back to Devexpress

DataViewBase.ShowFilterPopup Event

wpf-devexpress-dot-xpf-dot-grid-dot-dataviewbase-e9602da5.md

latest10.9 KB
Original Source

DataViewBase.ShowFilterPopup Event

Allows you to customize a column’s drop-down filter.

Namespace : DevExpress.Xpf.Grid

Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public event FilterPopupEventHandler ShowFilterPopup
vb
Public Event ShowFilterPopup As FilterPopupEventHandler

Event Data

The ShowFilterPopup event's data class is FilterPopupEventArgs. The following properties provide information specific to this event:

PropertyDescription
ColumnProvides access to a grid column whose values should be filtered.
ComboBoxEditGets the filter dropdown.
ExcelColumnFilterSettingsProvides access to the settings of the Excel-style filter.
HandledGets or sets a value that indicates the present state of the event handling for a routed event as it travels the route. Inherited from RoutedEventArgs.
OriginalSourceGets the original reporting source as determined by pure hit testing, before any possible Source adjustment by a parent class. Inherited from RoutedEventArgs.
PopupBaseEditGets the filter pop-up.
RoutedEventGets or sets the RoutedEvent associated with this RoutedEventArgs instance. Inherited from RoutedEventArgs.
SourceGets the View that raised the event.

The event data class exposes the following methods:

MethodDescription
InvokeEventHandler(Delegate, Object)When overridden in a derived class, provides a way to invoke event handlers in a type-specific way, which can increase efficiency over the base implementation. Inherited from RoutedEventArgs.
OnSetSource(Object)When overridden in a derived class, provides a notification callback entry point whenever the value of the Source property of an instance changes. Inherited from RoutedEventArgs.

Remarks

The GridControl raises the ShowFilterPopup event before a column’s drop-down filter is shown. In the event handler, you can delete existing items, change the filter popup’s minimum width and height, add new items with custom captions and filter values, and so on.

The event’s parameter FilterPopupEventArgs.ComboBoxEdit returns null if the ColumnBase.FilterPopupMode property is not set to List or CheckedList.

Example

This example shows how to replace the Registration Date column’s drop-down filter items with the following items:

  • (All) - Clears the column filter.
  • Registered in 2008 - Shows users registered in 2008.
  • Registered in 2009 - Shows users registered in 2009.

View Example: How to customize filter items within a column's Filter Dropdown

xaml
<dxg:GridControl x:Name="grid">
    <dxg:GridColumn FieldName="UserName"/>
    <dxg:GridColumn FieldName="RegistrationDate" FilterPopupMode="List"/>
    <dxg:GridControl.View>
        <dxg:TableView AutoWidth="True" ShowFilterPopup="TableView_ShowFilterPopup"/>
    </dxg:GridControl.View>
</dxg:GridControl>
cs
void TableView_ShowFilterPopup(object sender, FilterPopupEventArgs e) {
    if (e.Column.FieldName != "RegistrationDate")
        return;
    List<object> filterItems = new List<object>();
    filterItems.Add(new CustomComboBoxItem() {
        DisplayValue = "(All)",
        EditValue = new CustomComboBoxItem()
    });
    filterItems.Add(new CustomComboBoxItem() {
        DisplayValue = "Registered in 2008",
        EditValue = CriteriaOperator.Parse(string.Format(
        "[RegistrationDate] >= #{0}# AND [RegistrationDate] < #{1}#",
        new DateTime(2008, 1, 1), new DateTime(2009, 1, 1)))
    });
    filterItems.Add(new CustomComboBoxItem() {
        DisplayValue = "Registered in 2009",
        EditValue = CriteriaOperator.Parse(string.Format(
        "[RegistrationDate] >= #{0}# AND [RegistrationDate] < #{1}#",
        new DateTime(2009, 1, 1), new DateTime(2010, 1, 1)))
    });
    e.ComboBoxEdit.ItemsSource = filterItems;
}
vb
Private Sub TableView_ShowFilterPopup(ByVal sender As Object, ByVal e As FilterPopupEventArgs)
    If Not Equals(e.Column.FieldName, "RegistrationDate") Then Return
    Dim filterItems As List(Of Object) = New List(Of Object)()
    filterItems.Add(New CustomComboBoxItem() With {.DisplayValue = "(All)", .EditValue = New CustomComboBoxItem()})
    filterItems.Add(New CustomComboBoxItem() With {.DisplayValue = "Registered in 2008", .EditValue = CriteriaOperator.Parse(String.Format("[RegistrationDate] >= #{0}# AND [RegistrationDate] < #{1}#", New DateTime(2008, 1, 1), New DateTime(2009, 1, 1)))})
    filterItems.Add(New CustomComboBoxItem() With {.DisplayValue = "Registered in 2009", .EditValue = CriteriaOperator.Parse(String.Format("[RegistrationDate] >= #{0}# AND [RegistrationDate] < #{1}#", New DateTime(2009, 1, 1), New DateTime(2010, 1, 1)))})
    e.ComboBoxEdit.ItemsSource = filterItems
End Sub

The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowFilterPopup event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

wpf-data-grid-change-drop-down-filter-items/CS/DXGrid_CustomizingFilterDropdown/Window1.xaml#L10

xml
<dxg:GridControl.View>
    <dxg:TableView AutoWidth="True" ShowFilterPopup="TableView_ShowFilterPopup"/>
</dxg:GridControl.View>

wpf-data-grid-filter-columns-bound-to-collection-properties/CS/FilterDropDown_AgregateOperators/Behaviors/FilterDropDownAggregateOperatorBehavior.cs#L42

csharp
AssociatedObject.SubstituteFilter += AssociatedObject_SubstituteFilter;
    AssociatedObject.View.ShowFilterPopup += View_ShowFilterPopup;
}

wpf-data-grid-change-drop-down-filter-items/CS/DXGrid_CustomizingFilterDropdown/obj/Debug/net8.0-windows/Window1.g.cs#L92

csharp
#line 10 "..\..\..\Window1.xaml"
((DevExpress.Xpf.Grid.TableView)(target)).ShowFilterPopup += new DevExpress.Xpf.Grid.FilterPopupEventHandler(this.TableView_ShowFilterPopup);

wpf-data-grid-change-drop-down-filter-items/VB/DXGrid_CustomizingFilterDropdown/obj.NetFX/Debug/Window1.g.vb#L92

vb
#ExternalSource("..\..\Window1.xaml",10)
AddHandler CType(target,DevExpress.Xpf.Grid.TableView).ShowFilterPopup, New DevExpress.Xpf.Grid.FilterPopupEventHandler(AddressOf Me.TableView_ShowFilterPopup)

wpf-data-grid-filter-columns-bound-to-collection-properties/VB/FilterDropDown_AgregateOperators/Behaviors/FilterDropDownAggregateOperatorBehavior.vb#L55

vb
AddHandler AssociatedObject.SubstituteFilter, AddressOf AssociatedObject_SubstituteFilter
    AddHandler AssociatedObject.View.ShowFilterPopup, AddressOf View_ShowFilterPopup
End Sub

See Also

Drop-down Filter

DataViewBase Class

DataViewBase Members

DevExpress.Xpf.Grid Namespace