1

Please take a look at this link :
how-to-clear-radgrid-filters
But this link is for asp.net, not WinForms.
In WinForms there is no GridColumn or RadGrid1.MasterTableView.
How can i clear filtering of telerik radgridview in winforms?

SilverLight
  • 19,668
  • 65
  • 192
  • 300

1 Answers1

1

Try this.radGridView1.FilterDescriptors.Clear(); as per https://www.telerik.com/forums/how-do-i-clear-the-built-in-filters.

Michal Nawrocik
  • 78
  • 1
  • 3
  • 9