This question is locked. New answers and comments are not allowed.
I am filtering client-side using the below syntax:
How do I add an "or" expression to this? I want to also check if value exists in the "Description" field. Thanks for any help.
var
filterExpr = { field:
'Name'
, operator:
'substringof'
, value: value };
stopsGrid.dataSource.filter(filterExpr);
How do I add an "or" expression to this? I want to also check if value exists in the "Description" field. Thanks for any help.