This question is locked. New answers and comments are not allowed.
Hi,
I have a column in my radGridView. The type of this column is int
I have to check if this value exists in a list of values
but an error occur and it told me that contains is not supported.
Is there a way to bypass this limitation or a way to override the IsContainedIn filterOperator to do this task.
I have a column in my radGridView. The type of this column is int
I have to check if this value exists in a list of values
FilterDescriptor descriptorAgence =
new
FilterDescriptor();
descriptorAgence.Member =
"Agence_Number"
;
descriptorAgence.Operator = FilterOperator.IsContainedIn;
descriptorAgence.Value =
new
int
[] {1,2,3,4,5,6,7,8,9};
but an error occur and it told me that contains is not supported.
Is there a way to bypass this limitation or a way to override the IsContainedIn filterOperator to do this task.