I have an angular ui grid which has external filters and column filters. I'm using rowsProcessor while applying external filter and also while resetting the external filter.
I'm using this command for resetting the filters.
$scope.gridApi.grid.registerRowsProcessor( $scope.DisplayAll, 200 );
$scope.DisplayAll = function( renderableRows ){
renderableRows.forEach( function( row ) {
row.visible = true;
});
return renderableRows;
}
Once this is done, the grid is populated with all the data but the column filters present in the grid aren't working. Can anyone explain why this is happening. Thanks!