Web
In the last couple of weeks we have received several requests for a new feature. Imagine that you want to display RadGridView already filtered by a certain criteria. You could always do this in the past by writing something like this: 1: <telerik:RadGridView Name="playersGrid"> 2: <telerik:RadGridView.FilterDescriptors> 3: <telerikData:FilterDescriptor Member="Country" Operator="IsEqualTo" Value="England"/> 4: </telerik:RadGridView.FilterDescriptors> 5: </telerik:RadGridView> Now, that is perfectly legal and the grid will come up filtered. The filtering UI however, will not be aware of this. Expressed in other words, this feature might sound like this: “I would like to programmatically achieve the same effect that is achieved by filtering the grid with the...