The AngularJS controller has the following:
$scope.initiatives = _.where($scope.initiatives, {i_status_id:'Open'});
It works great to filter a list based on a field if the property value is "Open."
How do you use a wildcard in the filter value so that it collects "Open - Pending" if I look for all those that contain "Open"?
Alanw source share