ngGrid Multi Column Filtering
I am using the ngGrid module for AngularJS to show some paged data. I want to be able to search across multiple columns, however using an OR search. Lets say I have a column with the following headings: Id, Name, Description. When I search I want to return all rows where either Id OR name OR description contain the search term. $scope.pagingOptions = { pageSizes: [20, 50, 100], pageSize: 20, totalServerItems: 0, currentPage: 1 }; $scope.gridOptions = { data: 'myData', columnDefs: [ { field: 'id', displayName: 'Id' }, { field: 'name', displayName: 'Name' }, { field: 'description', displayName: