How do I add a filter value to the grid view programatically?
I have tried several configurations, but I am unable to generate any result. Here is the latest that seemed to make sense to me:
Within the load event
I have tried several configurations, but I am unable to generate any result. Here is the latest that seemed to make sense to me:
Within the load event
'adjust the filtering in the grid to defaults you might want
Me.RadGridView1.MasterGridViewInfo.TableFilteringRow.Cells("active").Value = "true"
Me.RadGridView1.MasterGridViewInfo.UpdateFiltering()
where active is the field name.