$0I have a scenario in which I dont want to show the Filter Row and want to handle filtering through my controls and not extending the existing functioanilty and want to do something like this when ever a person clicks Search button$0$0protected void btnSubmit_Click( object sender , EventArgs e )$0$0{ $0$0ClearFilters();$0$0if (ValidationManager.IsNotEmpty(ddlSearch1.SelectedValue)) $0$0{ $0$0 GridColumn Columnn = Grid.MasterTableView.GetColumn("Column1"); Columnn.CurrentFilterFunction = GridKnownFunction.EqualTo; Columnn.CurrentFilterValue = ddlSearch1.SelectedValue; $0$0} $0$0 if (ValidationManager.IsNotEmpty(ddlSearch2.SelectedValue)) $0$0 { $0$0 GridColumn Columnn = Grid.MasterTableView.GetColumn("Column2"); Columnn.CurrentFilterFunction = GridKnownFunction.EqualTo; Columnn.CurrentFilterValue = ddlSearch2.SelectedValue; $0$0 } $0$0 if (!ddlStatus.SelectedValue.Equals("All")) { $0$0 GridColumn Columnn = Grid.MasterTableView.GetColumn("Reviewed"); Columnn.CurrentFilterFunction = GridKnownFunction.EqualTo; Columnn.CurrentFilterValue = ddlStatus.SelectedValue; $0$0 }$0$0Grid.DataBind();$0$0}$0$0$0$0$0But the grid is not recocnixing the filters that I apply. Any help would be awesome $0