Hi,
when using the FilterOperator.NotLike the following error appears: Specified argument was out of the range of valid values. Parameter name: NotLike
if I change the operator to like it does work
It does not matter what i put in as the value for NotLike I get that error. If I put an empty string in as the value then I do not get an error and all results show as expected.
Is this a bug with NotLike or am I doing something wrong?
Thanks
when using the FilterOperator.NotLike the following error appears: Specified argument was out of the range of valid values. Parameter name: NotLike
this
.Filters.Add(
"=Fields.title"
, Telerik.Reporting.Data.FilterOperator.NotLike,
"%test%"
);
if I change the operator to like it does work
this
.Filters.Add(
"=Fields.title"
, Telerik.Reporting.Data.FilterOperator.Like,
"%test%"
)
It does not matter what i put in as the value for NotLike I get that error. If I put an empty string in as the value then I do not get an error and all results show as expected.
Is this a bug with NotLike or am I doing something wrong?
Thanks