Skip to main content

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

FilterEditorControl.QueryGroupOperations Event

Allows you to prohibit group operations.

Namespace: DevExpress.Xpf.Core.FilteringUI

Assembly: DevExpress.Xpf.Grid.v24.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public event EventHandler<QueryGroupOperationsEventArgs> QueryGroupOperations

#Event Data

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

Property Description
AllowAddCondition Gets or sets whether to allow users to add conditions.
AllowAddCustomExpression Gets or sets whether to allow users to add custom expressions.
AllowAddGroup Gets or sets whether to allow users to add a group of conditions.
Filter Gets the current filter criteria specified in the FilterEditorControl.

#Remarks

Run Demo: Filter Editor - Prohibit Group Operations

Use the QueryGroupOperations event to prohibit group operations. The following code sample prohibits users from adding custom expressions:

<dxg:TableView x:Name="view">
    <dxg:TableView.FilterEditorTemplate>
        <DataTemplate>
            <dxfui:FilterEditorControl QueryGroupOperations="OnQueryGroupOperations" />
        </DataTemplate>
    </dxg:TableView.FilterEditorTemplate>
</dxg:TableView> 
void OnQueryGroupOperations(object sender, QueryGroupOperationsEventArgs e) {
    e.AllowAddCustomExpression = false;
} 
See Also