Hello,
Although I'm not sure I fully understood your scenario and requirement, I believe you can handle the Searching event of the control, cancel it, and perform your custom filtering.
private void RadGridView_Searching(object sender, Telerik.Windows.Controls.GridView.GridViewSearchingEventArgs e)
{
if (e.SearchText.ToString() == "SomeText")
{
e.Cancel = true;
}
}
Can you please let me know if such an approach would work for you or if I have misunderstood your requirement in any way?
Regards,
Dilyan Traykov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.