Angularjs documentation states that the filter method should be able to accept an object as a parameter. This object allows you to specify the column to filter by, or use the special character "$" to search through all properties. While the filter works successfully when I specify a specific column name for filtering, it fails to work properly when utilizing the "$" to filter across all columns. I am unsure if I am using it correctly. Can anyone provide guidance on how to resolve this issue?
var filterObject = { $ : 'Jeff'};
$scope.myFilteredData = $filter('filter')($scope.myRawData, filterObject);