I have to modify data of grid based on external generic filter for data grid. I have searched and find out 2 ways to do so,
After changing grid data according to filter, use
$scope.gridApi.core.notifydatachange(uiGridConstants.dataChange.ALL)add
$scope.gridApi.grid.registerRowsProcessor( $scope.singleFilter, 200 );in$scope.gridOptions.onRegisterApiand then inside$scope.singleFilterfunction change visibility of data according to filter.
Is it possible to filter data according to external filter and column filter together?
If YES, I want to know which method will go very well with column filtering?