New to Telerik UI for WPFStart a free 30-day trial

Change the Default Selected Filter Operators

Updated on Sep 24, 2025

To change the default selected filter operators, you have to handle the FilterOperatorsLoading event of RadGridView and set them in the event arguments. When the FilteringMode is FilterRow, you only need to set the first operator.

C#
	private void OnRadGridViewFilterOperatorsLoading(object sender, Telerik.Windows.Controls.GridView.FilterOperatorsLoadingEventArgs e)
	{
	    if (e.Column.UniqueName == "HireDate")
	    {
	        e.DefaultOperator1 = Telerik.Windows.Data.FilterOperator.IsGreaterThan;
	        e.DefaultOperator2 = Telerik.Windows.Data.FilterOperator.IsLessThan;
	    }
	}

Please, note that you cannot reorder the available operators.

Not finding the help you need?
Contact Support