Is it possible to set the WPF RadGridView Filtering Mode="Filter Row" search, not updates in real time

1 Answer 17 Views
GridView
fabrizio
Top achievements
Rank 2
Iron
Veteran
fabrizio asked on 06 Nov 2025, 01:31 PM | edited on 06 Nov 2025, 01:32 PM

Goodmornig

Is it possible to set the WPF RadGridView FilteringMode="FilterRow" so that the search updates in real time as you type the text, like it was in winform?

And also that it uses the "contains" mode by default without having to select it from the menu every time, like it was in winform?

Thanks

1 Answer, 1 is accepted

Sort by
0
Accepted
Stenly
Telerik team
answered on 11 Nov 2025, 09:52 AM

Hello Fabrizio,

The RadGridView control provides this functionality as well.

To enable it, set the FilteringMode property to FilterRow, and in order to preselect the Contains operator, subscribe to the FilterOperatorsLoading event. In it, set the DefaultOperator1 property of the event arguments to Contains.

The following code snippets showcase these suggestions:

<telerik:RadGridView ItemsSource="{Binding MyCollection}"
                     GroupRenderMode="Flat"
                     FilteringMode="FilterRow"
                     FilterOperatorsLoading="RadGridView_FilterOperatorsLoading"/>
private void RadGridView_FilterOperatorsLoading(object sender, Telerik.Windows.Controls.GridView.FilterOperatorsLoadingEventArgs e)
{
    if (e.Column.Header.ToString() == "Name")
    {
        e.DefaultOperator1 = Telerik.Windows.Data.FilterOperator.Contains;
    }
}

With this being said, could you give these suggestions a try?

Regards,
Stenly
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

fabrizio
Top achievements
Rank 2
Iron
Veteran
commented on 12 Nov 2025, 08:54 AM

Ok thanks a lot
Tags
GridView
Asked by
fabrizio
Top achievements
Rank 2
Iron
Veteran
Answers by
Stenly
Telerik team
Share this question
or