This question is locked. New answers and comments are not allowed.
In working with a domain data source, attempting to use the grid filter "does not contain" causes an argument exception. I had been using the following code to convert a Telerik filter descriptor to one the DDS can use:
Private Function CreateRiaFilterOperator(ByVal filterOperator As Telerik.Windows.Data.FilterOperator) As System.Windows.Controls.FilterOperator
'conversion from a telerik filter operator to a dds filter operator
Return DirectCast([Enum].Parse(GetType(System.Windows.Controls.FilterOperator), filterOperator.ToString(), True), System.Windows.Controls.FilterOperator)
End Function
I verified this is not working with your online demo as well.
http://demos.telerik.com/silverlight/#GridView/DomainDataSource
We are using version 2010.3.1314.1040
Is there a way to remove the one filter descriptor when using a DDS?