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
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: