New to Telerik UI for WinForms? Start a free 30-day trial
Put a filter cell into edit mode programmatically
Updated on May 7, 2026
You can easily put a filter cell into edit mode by code. You should simply call the BeginEdit method of the desired cell:
Put a filter cell in edit mode programmatically
C#
this.radGridView1.MasterView.TableFilteringRow.Cells[1].BeginEdit();
